From efcf062e8f9ba8ea7c3d659d16b91c24464826db Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Mon, 23 Dec 2019 13:56:42 -0500 Subject: [PATCH] Change youmubot-osu into a library --- .vscode/launch.json | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 027755f..8f7f2e1 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,35 +7,17 @@ { "type": "lldb", "request": "launch", - "name": "Debug executable 'youmubot-osu'", - "cargo": { - "args": [ - "build", - "--bin=youmubot-osu", - "--package=youmubot-osu" - ], - "filter": { - "name": "youmubot-osu", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in executable 'youmubot-osu'", + "name": "Debug unit tests in library 'youmubot-osu'", "cargo": { "args": [ "test", "--no-run", - "--bin=youmubot-osu", + "--lib", "--package=youmubot-osu" ], "filter": { "name": "youmubot-osu", - "kind": "bin" + "kind": "lib" } }, "args": [],