47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"command": "cmd",
|
|
"type": "shell",
|
|
"args": ["/C"],
|
|
"tasks": [
|
|
{
|
|
"group": "build",
|
|
"label": "make",
|
|
"command": "${env:GDK}\\bin\\make",
|
|
"args": [
|
|
"-f",
|
|
"${env:GDK}\\makefile.gen"
|
|
],
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": true
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "clean",
|
|
"command": "${env:GDK}\\bin\\make",
|
|
"args": [
|
|
"clean",
|
|
"-f",
|
|
"${env:GDK}\\makefile.gen"
|
|
],
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": true
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|