diff options
author | David Timber <dxdt@dev.snart.me> | 2022-10-18 14:50:48 +0800 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2022-10-18 14:50:48 +0800 |
commit | 8b47484919d61d389dfdefb07fe1b168021696e7 (patch) | |
tree | 7feb68d11dd73e3b98a43628572d9b70442dd085 /.vscode | |
parent | 44d5b5b1bada4ef81a8b82612e8e248729c71e5d (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')
-rw-r--r-- | .vscode/launch.json | 19 | ||||
-rw-r--r-- | .vscode/tasks.json | 5 |
2 files changed, 24 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" + }, ] } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4b31a75..5507cff 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -75,6 +75,11 @@ "type": "shell", "command": "make -C ./src proone" }, + { + "label": "Build yamlls", + "type": "shell", + "command": "make -C ./src proone-yamlls" + }, { |