23 lines
538 B
JSON
23 lines
538 B
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "cmake",
|
||
|
"type": "shell",
|
||
|
"command": "cd build && cmake .. && make -j8",
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "doxygen",
|
||
|
"type": "shell",
|
||
|
"command": "doxygen",
|
||
|
"problemMatcher": []
|
||
|
}
|
||
|
]
|
||
|
}
|