Skip to content

Commit

Permalink
vscode settings for linux and osx
Browse files Browse the repository at this point in the history
  • Loading branch information
drhelius committed Nov 15, 2024
1 parent 0ee88aa commit 3918986
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"compilerPath": "/usr/bin/clang",
"cStandard": "c99",
"cppStandard": "c++11",
"intelliSenseMode": "macos-clang-x64",
"intelliSenseMode": "macos-clang-arm64",
"includePath": [
"${workspaceFolder}/**",
"/opt/homebrew/include/SDL2"
Expand All @@ -30,5 +30,6 @@
}
}
],
"version": 4
"version": 4,
"enableConfigurationSquiggles": true
}
7 changes: 6 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,12 @@
"cwd": "${workspaceFolder}/tests",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"linux": {
"MIMode": "gdb"
},
"osx": {
"MIMode": "lldb"
},
"preLaunchTask": "Build (TESTS)",
"setupCommands": [
{
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@
"typeinfo": "cpp",
"optional": "cpp"
}
}
}

0 comments on commit 3918986

Please sign in to comment.