ServerCore/.vscode/c_cpp_properties.json

30 lines
836 B
JSON

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