2
0
Fork 0
mirror of https://github.com/agersant/polaris synced 2025-02-23 00:58:28 +00:00

Added compile task, switch run task to debug build

This commit is contained in:
Antoine Gersant 2017-07-05 23:29:00 -07:00
parent 4b251dd953
commit b607bbaceb

13
.vscode/tasks.json vendored
View file

@ -9,7 +9,7 @@
"taskName": "Run",
"options": { "cwd": "${workspaceRoot}" },
"command": "cargo",
"args": ["run", "--release", "--", "-c", "./TestConfigWindows.toml", "-d", "test/db.sqlite", "-w", "../polaris-web"]
"args": ["run", "--", "-c", "./TestConfigWindows.toml", "-d", "test/db.sqlite", "-w", "../polaris-web"]
},
// Run unit tests
@ -19,7 +19,14 @@
"options": { "cwd": "${workspaceRoot}" },
"command": "cargo",
"args": ["test"]
}
},
// Compile
{
"taskName": "Compile",
"options": { "cwd": "${workspaceRoot}" },
"command": "cargo",
"args": ["check"]
}
]
}