VS code workspace: add unit tests

This commit is contained in:
Dirk Ziegelmeier
2018-10-27 22:35:54 +02:00
parent ffbe075d56
commit 5698e57da3
2 changed files with 44 additions and 1 deletions

17
.vscode/tasks.json vendored
View File

@@ -16,6 +16,23 @@
},
"command": "cmake --build ."
},
{
"label": "Build unit tests",
"type": "shell",
"problemMatcher": "$gcc",
"group": "build",
"linux": {
"options": {
"cwd": "${workspaceFolder}/contrib/ports/unix/check/build"
},
},
"windows": {
"options": {
"cwd": "${workspaceFolder}/contrib/ports/win32/check/build"
},
},
"command": "cmake --build ."
},
{
"label": "Configure example_app",
"type": "shell",