Add tasks
This commit is contained in:
parent
026dc39ef4
commit
4e4ddd8234
1 changed files with 19 additions and 0 deletions
19
.vscode/tasks.json
vendored
Normal file
19
.vscode/tasks.json
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
|
// for the documentation about the tasks.json format
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "Build All Exercises",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "mkdir -p build && cd build && cmake .. && make -j 8",
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Run Exercise 1",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "build/bin/./Exercise1",
|
||||||
|
"problemMatcher": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue