23 lines
630 B
JSON
23 lines
630 B
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "clean",
|
||
|
"type": "shell",
|
||
|
"command": "python tool/mqmake/mqmake.py -f build/mqmake/project.json -c",
|
||
|
"problemMatcher": [
|
||
|
"$gcc"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"label": "make",
|
||
|
"type": "shell",
|
||
|
"command": "python tool/mqmake/mqmake.py -f build/mqmake/project.json",
|
||
|
"problemMatcher": [
|
||
|
"$gcc"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|