step/tool/vscode_config/tasks.json
2018-01-23 08:58:46 +08:00

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"
]
}
]
}