diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index fe6bc48..4216eb2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -70,6 +70,22 @@ ], "preLaunchTask": "Build proone", "miDebuggerPath": "/usr/bin/gdb" - } + }, + + { + "name": "test_proto", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/src/proone-test_proto", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [], + "preLaunchTask": "Build test_proto", + "miDebuggerPath": "/usr/bin/gdb" + }, ] } |