Wire up task 4
This commit is contained in:
parent
c170f3d716
commit
f89a16075a
3 changed files with 318 additions and 376 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
||||||
exercise1/build/
|
exercise1/build/
|
||||||
exercise2/build/
|
exercise2/build/
|
||||||
exercise3/build/
|
exercise3/build/
|
||||||
|
exercise4/build/
|
||||||
|
|
||||||
.vscode/ipch
|
.vscode/ipch
|
23
.vscode/tasks.json
vendored
23
.vscode/tasks.json
vendored
|
@ -77,6 +77,27 @@
|
||||||
"options": {
|
"options": {
|
||||||
"cwd": "/usr/bin"
|
"cwd": "/usr/bin"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"label": "Run Exercise 4",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "cd exercise4/build/cmake/ && ./exercise4",
|
||||||
|
"dependsOn": "Build Exercise 4",
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build Exercise 4",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "cd exercise4/build/cmake && cmake . && make -j16",
|
||||||
|
"problemMatcher": [],
|
||||||
|
"presentation": {
|
||||||
|
"echo": true,
|
||||||
|
"reveal": "always",
|
||||||
|
"focus": false,
|
||||||
|
"panel": "shared",
|
||||||
|
"showReuseMessage": true,
|
||||||
|
"clear": true
|
||||||
|
}
|
||||||
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue