c_cpp_properties.json 737 B

123456789101112131415161718192021222324252627
  1. {
  2. "configurations": [
  3. {
  4. "name": "Linux",
  5. "includePath": [
  6. "${workspaceFolder}/**"
  7. ],
  8. "defines": [],
  9. "compilerPath": "/usr/bin/gcc",
  10. "cStandard": "c11",
  11. "cppStandard": "c++17",
  12. "intelliSenseMode": "clang-x64"
  13. },
  14. {
  15. "name": "ESP32",
  16. "includePath": [
  17. "${workspaceFolder}/**"
  18. ],
  19. "defines": [],
  20. "compilerPath": "/home/curiousmuch/esp/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc ",
  21. "cStandard": "c11",
  22. "cppStandard": "c++17",
  23. "intelliSenseMode": "${default}"
  24. }
  25. ],
  26. "version": 4
  27. }