aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorDavid Timber <dxdt@dev.snart.me>2022-10-18 14:50:48 +0800
committerDavid Timber <dxdt@dev.snart.me>2022-10-18 14:50:48 +0800
commit8b47484919d61d389dfdefb07fe1b168021696e7 (patch)
tree7feb68d11dd73e3b98a43628572d9b70442dd085 /.vscode/launch.json
parent44d5b5b1bada4ef81a8b82612e8e248729c71e5d (diff)
Add yaml.h, hostinfod bug fix, compilation setting
- Add yaml helper functions - Add yaml test tool proone-yamlls - Add yaml test doc - Refactor hostinfod with yaml.h - Fix bug in hostinfod where specifying verbosity results in config error - Add C flag '-Werror=implicit-function-declaration' - Update doxygen template
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index c6d96f8..7c6001b 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -243,5 +243,24 @@
"${workspaceFolder}/src/data/proto/txtrec-testdata" ],
"console": "integratedTerminal"
},
+ {
+ "name": "yamlls",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/src/proone-yamlls",
+ "args": [
+ "-o",
+ "-a",
+ "${workspaceFolder}/src/data/yaml/prne_yaml-test.yaml",
+ ],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "MIMode": "gdb",
+ "setupCommands": [],
+ "preLaunchTask": "Build yamlls",
+ "miDebuggerPath": "/usr/bin/gdb"
+ },
]
}