ServerCore/.vscode/c_cpp_properties.json
2022-01-24 18:36:47 -08:00

31 lines
898 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",
"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
}