diff options
author | David Timber <mieabby@gmail.com> | 2020-09-04 11:32:28 +0930 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2020-09-04 11:32:28 +0930 |
commit | 3a43c5e6e2afbd0bbcd38d223ce3b41dbe2f5a9f (patch) | |
tree | bf62e2de5944f65cf5eb008acf422d8f6868b077 /.vscode | |
parent | 1aa37a98e47335e283d08a7798bd8e0d2eda7227 (diff) |
* Revision htbt_host_cred format
* Rewrite proto_test accordingly
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 18 | ||||
-rw-r--r-- | .vscode/tasks.json | 6 |
2 files changed, 23 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" + }, ] } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 625efdb..f78549c 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -39,6 +39,12 @@ "label": "Build proone", "type": "shell", "command": "make -C ./src proone" + }, + + { + "label": "Build test_proto", + "type": "shell", + "command": "make -C ./src proone-test_proto" } ] } |