Files
fault-finder/.vscode/tasks.json
Grant Terris c49c8f6e33 Initial Commit
2019-11-09 15:44:38 -08:00

27 lines
568 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "cmake",
"type": "shell",
"command": "cmake",
"args": [
"."
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "make",
"type": "shell",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "cmake"
}
]
}