Skip to content

Commit

Permalink
add vscode tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
rettinghaus committed May 19, 2020
1 parent 715be28 commit d026f3c
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "cmake",
"type": "shell",
"options": {
"cwd": "${workspaceRoot}/tools"
},
"command": "cmake",
"args": [
"../cmake"
]
},
{
"label": "make",
"type": "shell",
"command": "make",
"options": {
"cwd": "${workspaceRoot}/tools"
},
"dependsOn": [
"cmake"
],
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

0 comments on commit d026f3c

Please sign in to comment.