From 2eb8a75270ec42f4447e0656112d726ae7218316 Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Mon, 12 May 2025 17:49:43 -0700 Subject: [PATCH] add lauchsettings for debuging --- .vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100755 index 0000000..10efcb2 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // 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}/", + "args": [], + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file