Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 lines
407B

  1. {
  2. "$schema": "../res/toolchain-schema.json",
  3. "compiler_id": "gnu",
  4. "c_compiler": "gcc-9",
  5. "cxx_compiler": "g++-9",
  6. "cxx_version": "c++17",
  7. "flags": [
  8. "-DSPDLOG_COMPILED_LIB", // Required to use a compiled spdlog
  9. "-Werror=return-type"
  10. ],
  11. "cxx_flags": [
  12. "-fconcepts"
  13. ],
  14. // "debug": true,
  15. "optimize": true,
  16. "compiler_launcher": "ccache"
  17. }