mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2024-11-22 06:06:52 -08:00
34 lines
711 B
JSON
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
|
|
} |