ClassicOS/.vscode/c_cpp_properties.json
2024-02-07 23:55:04 -08:00

34 lines
711 B
JSON

{
"env": {
"myDefaultIncludePath": [
"${workspaceFolder}/ClassicOS/include"
],
"myCompilerPath": "/usr/bin/gcc"
},
"configurations": [
{
"name": "Linux",
"intelliSenseMode": "linux-gcc-x64",
"compilerArgs": [
""
],
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"compileCommands": "build/compile_commands.json",
"browse": {
"path": [
"${workspaceFolder}/src"
],
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "${workspaceFolder}/.vscode/browse.vc.db"
},
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}