| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "configurations": [
- {
- "name": "Linux",
- "includePath": [
- "${workspaceFolder}/engine/src/**",
- "${workspaceFolder}/vulkan_renderer/src/**",
- "${VULKAN_SDK}/include"
- ],
- "defines": [
- "_DEBUG",
- "UNICODE",
- "_UNICODE",
- "KEXPORT",
- "_GNU_SOURCE"
- ],
- "compilerPath": "/usr/bin/clang",
- "cStandard": "c17",
- "cppStandard": "c++17",
- "intelliSenseMode": "clang-x64"
- },
- {
- "name": "Mac",
- "includePath": [
- "${workspaceFolder}/engine/src/**",
- "${workspaceFolder}/vulkan_renderer/src/**",
- "${VULKAN_SDK}/include"
- ],
- "defines": [
- "_DEBUG",
- "UNICODE",
- "_UNICODE",
- "KEXPORT"
- ],
- "compilerPath": "/usr/bin/clang",
- "cStandard": "c17",
- "cppStandard": "c++17",
- "intelliSenseMode": "clang-x64"
- },
- {
- "name": "Win32",
- "includePath": [
- "${workspaceFolder}/engine/src/**",
- "${workspaceFolder}/vulkan_renderer/src/**",
- "${VULKAN_SDK}/include"
- ],
- "defines": [
- "_DEBUG",
- "UNICODE",
- "_UNICODE",
- "KEXPORT"
- ],
- "windowsSdkVersion": "10.0.18362.0",
- "compilerPath": "C:\\Program Files\\LLVM\\bin\\clang.exe",
- "cStandard": "c17",
- "cppStandard": "c++17",
- "intelliSenseMode": "clang-x64"
- }
- ],
- "version": 4
- }
|