Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

c_cpp_properties.json 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "configurations": [
  3. {
  4. "name": "Win32",
  5. "includePath": [
  6. "${workspaceFolder}/**"
  7. ],
  8. "defines": [
  9. "_DEBUG",
  10. "UNICODE",
  11. "_UNICODE"
  12. ],
  13. "compilerPath": "C:/MinGW/bin/gcc.exe",
  14. "cStandard": "c11",
  15. "cppStandard": "c++17",
  16. "intelliSenseMode": "gcc-x86",
  17. "compilerArgs": [],
  18. "browse": {
  19. "path": [
  20. "${workspaceFolder}/**"
  21. ],
  22. "limitSymbolsToIncludedHeaders": true
  23. }
  24. },
  25. {
  26. "name": "Linux",
  27. "includePath": [
  28. "${workspaceFolder}/**"
  29. ],
  30. "defines": [
  31. "_DEBUG"
  32. ],
  33. "compilerPath": "/usr/bin/gcc",
  34. "cStandard": "c11",
  35. "cppStandard": "c++17",
  36. "intelliSenseMode": "gcc-x64"
  37. },
  38. {
  39. "name": "Win32-Prestigio",
  40. "includePath": [
  41. "${workspaceFolder}/**"
  42. ],
  43. "defines": [
  44. "_DEBUG",
  45. "UNICODE",
  46. "_UNICODE"
  47. ],
  48. "compilerPath": "D:/MinGW/mingw32/bin/gcc.exe",
  49. "cStandard": "c11",
  50. "cppStandard": "c++17",
  51. "intelliSenseMode": "clang-x64"
  52. }
  53. ],
  54. "version": 4
  55. }