We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28cb9b4 commit 80a10d1Copy full SHA for 80a10d1
.vscode/launch.json
@@ -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