vscodesetting/c_cpp_properties.json

27 lines
681 B
JSON
Raw Permalink Normal View History

2020-02-18 20:57:00 +08:00
{
"env": {
2020-02-19 17:54:57 +08:00
"myDefaultIncludePath": [
"${workspaceFolder}",
"${workspaceFolder}/include"
]
},
2020-02-18 20:57:00 +08:00
"configurations": [
{
"name": "Linux",
"intelliSenseMode": "clang-x64",
"includePath": [
2020-02-19 17:54:57 +08:00
"${workspaceFolder}/**"
2020-02-18 20:57:00 +08:00
],
"defines": [],
"compilerPath": "/usr/bin/clang-3.9",
2024-03-21 21:17:14 +08:00
"compileCommands": "${workspaceFolder}/compile_commands.json",
"C_Cpp.files.exclude": {
"3rdparties/ghal": true,
"**/.vscode": true,
"**/.vs": true
},
2020-02-18 20:57:00 +08:00
}
],
"version": 4
}