aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorDavid Timber <mieabby@gmail.com>2020-09-10 13:17:25 +0930
committerDavid Timber <mieabby@gmail.com>2020-09-10 13:17:25 +0930
commitc4160ed41717260b5941e2729c444b8ec051d5f0 (patch)
treeebff8d607109689adce32b25e02d294cd86c251d /.vscode
parentbb797b9a405090d69cae75d2ef76cb797449886c (diff)
* Impl: rnd interface and WELL512
* cncp: query cnc txt rec after wait not before * In case the child keeps on dying
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json15
-rw-r--r--.vscode/tasks.json5
2 files changed, 20 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index acc9e6b..6bcfd80 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -72,6 +72,21 @@
"preLaunchTask": "Build pack",
"miDebuggerPath": "/usr/bin/gdb"
},
+ {
+ "name": "rnd",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/src/proone-rnd",
+ "args": [ "256", "256" ],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "MIMode": "gdb",
+ "setupCommands": [],
+ "preLaunchTask": "Build rnd",
+ "miDebuggerPath": "/usr/bin/gdb"
+ },
{
"name": "proone",
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index c8402b5..03171be 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -41,6 +41,11 @@
"command": "make -C ./src dvault.bin proone-pack"
},
{
+ "label": "Build rnd",
+ "type": "shell",
+ "command": "make -C ./src proone-rnd"
+ },
+ {
"label": "Build proone",
"type": "shell",
"command": "make -C ./src proone"