Skip to content

Commit 80a10d1

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [VSCode] enable debugging capabilities.
1 parent 28cb9b4 commit 80a10d1

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.vscode/launch.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "(lldb) Launch",
6+
"type": "cppdbg",
7+
"request": "launch",
8+
// Resolved by CMake Tools:
9+
"program": "${command:cmake.launchTargetPath}",
10+
"args": [],
11+
"stopAtEntry": false,
12+
"cwd": "${workspaceFolder}/src/tests",
13+
"environment": [
14+
{
15+
// add the directory where our target was built to the PATHs
16+
// it gets resolved by CMake Tools:
17+
"name": "PATH",
18+
"value": "$PATH:${command:cmake.launchTargetDirectory}"
19+
}
20+
],
21+
"externalConsole": true,
22+
"MIMode": "lldb",
23+
}
24+
]
25+
}

0 commit comments

Comments
 (0)