From: Arran Cudbard-Bell Date: Wed, 29 Jun 2022 18:59:41 +0000 (-0500) Subject: Add a standard launch file for radiusd to allow easy testing in the build tree X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c1f519370125fd2afd7412d6b45936e8d7d3b79;p=thirdparty%2Ffreeradius-server.git Add a standard launch file for radiusd to allow easy testing in the build tree --- diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000000..d90b8b62f25 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,25 @@ +{ + // 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": [ + { + "type": "lldb", + "request": "launch", + "name": "Debug", + "program": "${workspaceFolder}/build/bin/local/radiusd", + "args": [ + "-X", + "-D", + "${workspaceFolder}/share/dictionary", + "-d", + "${workspaceFolder}/raddb" + ], + "cwd": "${workspaceFolder}", + "env": { + "FR_LIBRARY_PATH": "${workspaceFolder}/build/lib/local/.libs" + } + } + ] +}