Skip to content

Commit

Permalink
feat(vscode): Add a debug launch setting for ctest
Browse files Browse the repository at this point in the history
  • Loading branch information
FeignClaims committed May 31, 2024
1 parent 9dc2186 commit 059ace4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@
"value": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"
}
},
{
"name": "LLDB: debug ctest",
"type": "lldb",
"request": "launch",
"program": "${command:cmake.testProgram}",
"args": ["${cmake.testArgs}"],
"cwd": "${command:cmake.testWorkingDirectory}",
"env": {
"name": "PATH",
"value": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"
}
},
{
"name": "CMake: debug configuration",
"type": "cmake",
Expand Down

0 comments on commit 059ace4

Please sign in to comment.