From 8b47484919d61d389dfdefb07fe1b168021696e7 Mon Sep 17 00:00:00 2001 From: David Timber Date: Tue, 18 Oct 2022 14:50:48 +0800 Subject: 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 --- .vscode/launch.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to '.vscode/launch.json') 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" + }, ] } -- cgit