Skip to content

Commit

Permalink
debug config vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
PABannier committed Jul 8, 2023
1 parent 4846c07 commit 76d1683
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "lldb",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"cwd": "${fileDirname}",
"preLaunchTask": "run makefile",
}
]
}
12 changes: 12 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"tasks": [
{
"type": "shell",
"label": "run makefile",
"command": "make",
"args": ["bark"],
"problemMatcher": [],
}
],
"version": "2.0.0"
}

0 comments on commit 76d1683

Please sign in to comment.