ServerCore/.vscode/c_cpp_properties.json
Brad Arant db199eaec3 ?
2022-10-18 19:06:28 -07:00

31 lines
901 B
JSON

{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/../CoreUtils"
],
"defines": [],
"compilerPath": "/usr/bin/clang-12",
"cStandard": "c17",
"cppStandard": "gnu++20",
"intelliSenseMode": "windows-gcc-x64",
"compileCommands": "./compile",
"configurationProvider": "ms-vscode.cmake-tools"
},
{
"name": "config",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "gcc-x64",
"compileCommands": "./compile"
}
],
"version": 4
}