aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json18
-rw-r--r--.vscode/tasks.json6
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"
}
]
}