Skip to content

Commit 624e5ea

Browse files
committed
Update .vscode/launch.json
1 parent a164fe4 commit 624e5ea

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

.vscode/launch.json

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"name": "(lldb) Launch",
8+
"name": "(lldb) pt",
99
"type": "cppdbg",
1010
"request": "launch",
1111
"program": "${workspaceFolder}/build/pt",
@@ -17,7 +17,19 @@
1717
"MIMode": "lldb"
1818
},
1919
{
20-
"name": "(Windows) Launch",
20+
"name": "(lldb) tests",
21+
"type": "cppdbg",
22+
"request": "launch",
23+
"program": "${workspaceFolder}/build/tests",
24+
"args": [],
25+
"stopAtEntry": false,
26+
"cwd": "${workspaceFolder}/build",
27+
"environment": [],
28+
"externalConsole": false,
29+
"MIMode": "lldb"
30+
},
31+
{
32+
"name": "(Windows) pt",
2133
"type": "cppvsdbg",
2234
"request": "launch",
2335
"program": "${workspaceFolder}/build/Debug/pt.exe",
@@ -26,6 +38,17 @@
2638
"cwd": "${workspaceFolder}",
2739
"environment": [],
2840
"console": "externalTerminal"
41+
},
42+
{
43+
"name": "(Windows) tests",
44+
"type": "cppvsdbg",
45+
"request": "launch",
46+
"program": "${workspaceFolder}/build/Debug/tests.exe",
47+
"args": [],
48+
"stopAtEntry": false,
49+
"cwd": "${workspaceFolder}/build/Debug",
50+
"environment": [],
51+
"console": "externalTerminal"
2952
}
3053
]
3154
}

0 commit comments

Comments
 (0)