From 64e0a027542fe4c6713e4abf84a6ddf481946f3a Mon Sep 17 00:00:00 2001 From: Michel Heily Date: Fri, 28 Jun 2019 14:58:17 +0300 Subject: [PATCH] Add .vscode configuration for easy debugging --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b5d1e1e --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + // 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 the debugger", + "sourceLanguages": ["rust"], + "program": "${workspaceFolder}/target/debug/${workspaceRootFolderName}", + "args": ["debug"], + "cwd": "${workspaceFolder}", + "terminal": "integrated" + } + ] +} \ No newline at end of file