Change youmubot-osu into a library

This commit is contained in:
Natsu Kagami 2019-12-23 13:56:42 -05:00
parent d9fbfe446c
commit efcf062e8f

24
.vscode/launch.json vendored
View file

@ -7,35 +7,17 @@
{ {
"type": "lldb", "type": "lldb",
"request": "launch", "request": "launch",
"name": "Debug executable 'youmubot-osu'", "name": "Debug unit tests in library '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'",
"cargo": { "cargo": {
"args": [ "args": [
"test", "test",
"--no-run", "--no-run",
"--bin=youmubot-osu", "--lib",
"--package=youmubot-osu" "--package=youmubot-osu"
], ],
"filter": { "filter": {
"name": "youmubot-osu", "name": "youmubot-osu",
"kind": "bin" "kind": "lib"
} }
}, },
"args": [], "args": [],