summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json58
1 files changed, 58 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..2519d97
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,58 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Debug executable 'init'",
+ "type": "lldb",
+ "request": "launch",
+ "cargo": {
+ "args": [
+ "run",
+ "--bin=init",
+ "--package=init"
+ ]
+ },
+ "args": []
+ },
+ {
+ "name": "Debug unit tests in executable 'init'",
+ "type": "lldb",
+ "request": "launch",
+ "cargo": {
+ "args": [
+ "test",
+ "--bin=init",
+ "--package=init"
+ ]
+ }
+ },
+ {
+ "name": "Debug executable 'vegilctl'",
+ "type": "lldb",
+ "request": "launch",
+ "cargo": {
+ "args": [
+ "run",
+ "--bin=vegilctl",
+ "--package=vegilctl"
+ ]
+ },
+ "args": []
+ },
+ {
+ "name": "Debug unit tests in executable 'vegilctl'",
+ "type": "lldb",
+ "request": "launch",
+ "cargo": {
+ "args": [
+ "test",
+ "--bin=vegilctl",
+ "--package=vegilctl"
+ ]
+ }
+ }
+ ]
+} \ No newline at end of file