From 9ba78e740699ec300ace569fcac38af866f18d0f Mon Sep 17 00:00:00 2001 From: miirc Date: Sun, 8 Nov 2020 10:24:54 -0500 Subject: [PATCH] Added a debug config for vscode --- .vscode/launch.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a1ba85e --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,27 @@ +{ + // 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 unit tests in library 'pigeon_core'", + "cargo": { + "args": [ + "test", + "--no-run", + "--lib", + "--package=pigeon_core" + ], + "filter": { + "name": "pigeon_core", + "kind": "lib" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file