Skip to content

Commit

Permalink
Update vscode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
drhelius committed Jul 30, 2024
1 parent d557f82 commit d729e3b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
17 changes: 17 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/SDL2"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c99",
"cppStandard": "c++11",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}
8 changes: 5 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"files.exclude": {
"**/*.o": true,
"**/*.so": true
"**/*.so": true,
"**/gearboy": true
},
"cmake.configureOnOpen": false,
"files.associations": {
Expand Down Expand Up @@ -62,6 +63,7 @@
"streambuf": "cpp",
"thread": "cpp",
"cinttypes": "cpp",
"typeinfo": "cpp"
"typeinfo": "cpp",
"optional": "cpp"
}
}
}

0 comments on commit d729e3b

Please sign in to comment.