Skip to content

Commit

Permalink
chore: update vscode config
Browse files Browse the repository at this point in the history
update include path and c/c++ standard
  • Loading branch information
chirsz-ever committed Apr 9, 2024
1 parent 5c27c1f commit 858da44
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,16 @@
{
"version": 4,
"env": {
"myDefaultIncludePath": [
"${workspaceFolder}/src",
"${workspaceFolder}/src/ege"
]
},
"configurations": [
{
"name": "default",
"cStandard": "c11",
"cppStandard": "c++17",
"cStandard": "c89",
"cppStandard": "c++98",
"defines": [
"_FORTIFY_SOURCE=0"
],
"includePath": [
"${myDefaultIncludePath}"
],
"configurationProvider": "ms-vscode.cmake-tools"
"${workspaceFolder}/include"
]
}
]
}

0 comments on commit 858da44

Please sign in to comment.