vktutorial/.vscode/c_cpp_properties.json

31 lines
909 B
JSON
Raw Normal View History

2024-02-21 13:28:50 +08:00
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
},
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**",
"/Users/wanghao/VulkanSDK/1.4.328.1/macOS/include",
"/opt/local/include",
"/usr/local/include"
],
"defines": [],
"compilerPath": "/usr/bin/clang++",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-clang-arm64"
2024-02-21 13:28:50 +08:00
}
],
"version": 4
}