c_cpp_properties.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "configurations": [
  3. {
  4. "name": "Linux",
  5. "includePath": [
  6. "${workspaceFolder}/engine/src/**",
  7. "${workspaceFolder}/vulkan_renderer/src/**",
  8. "${VULKAN_SDK}/include"
  9. ],
  10. "defines": [
  11. "_DEBUG",
  12. "UNICODE",
  13. "_UNICODE",
  14. "KEXPORT",
  15. "_GNU_SOURCE"
  16. ],
  17. "compilerPath": "/usr/bin/clang",
  18. "cStandard": "c17",
  19. "cppStandard": "c++17",
  20. "intelliSenseMode": "clang-x64"
  21. },
  22. {
  23. "name": "Mac",
  24. "includePath": [
  25. "${workspaceFolder}/engine/src/**",
  26. "${workspaceFolder}/vulkan_renderer/src/**",
  27. "${VULKAN_SDK}/include"
  28. ],
  29. "defines": [
  30. "_DEBUG",
  31. "UNICODE",
  32. "_UNICODE",
  33. "KEXPORT"
  34. ],
  35. "compilerPath": "/usr/bin/clang",
  36. "cStandard": "c17",
  37. "cppStandard": "c++17",
  38. "intelliSenseMode": "clang-x64"
  39. },
  40. {
  41. "name": "Win32",
  42. "includePath": [
  43. "${workspaceFolder}/engine/src/**",
  44. "${workspaceFolder}/vulkan_renderer/src/**",
  45. "${VULKAN_SDK}/include"
  46. ],
  47. "defines": [
  48. "_DEBUG",
  49. "UNICODE",
  50. "_UNICODE",
  51. "KEXPORT"
  52. ],
  53. "windowsSdkVersion": "10.0.18362.0",
  54. "compilerPath": "C:\\Program Files\\LLVM\\bin\\clang.exe",
  55. "cStandard": "c17",
  56. "cppStandard": "c++17",
  57. "intelliSenseMode": "clang-x64"
  58. }
  59. ],
  60. "version": 4
  61. }