Skip to content

Commit

Permalink
[build] First attempt at VSCode usage
Browse files Browse the repository at this point in the history
  • Loading branch information
thoni56 committed Mar 28, 2024
1 parent abb74b3 commit 562f5ec
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
build
.idea
.cache
CMakeCache.txt
CMakeFiles
Testing
Expand Down
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Cgreen C tests",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/tests/test_cgreen_c",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"MIMode": "lldb"
//"miDebuggerPath": "/opt/clang+llvm-15.0.6-arm64-apple-darwin21.0//bin/lldb-vscode"
}
]
}

0 comments on commit 562f5ec

Please sign in to comment.