From 8ef9369d1d7d28263fe8a1df327cf1327d991eff Mon Sep 17 00:00:00 2001 From: lza_menace Date: Wed, 2 Nov 2022 13:19:10 -0700 Subject: [PATCH] include vscode launcher --- .gitignore | 2 +- .vscode/launch.json | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index ec88abb..68911d3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ /target /vendor -*.json +/*.json *.log *.ogg diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 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