2D_Engine/.vscode/tasks.json

35 lines
862 B
JSON

{
"tasks": [
{
"type": "shell",
"command": "compiler 2D_Engine",
"label": "Compiler",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
}
},
{
"type": "shell",
"command": "./2D_Engine",
"label": "Launch",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
}
},
{
"type": "shell",
"command": "compiler 2D_Engine; ./2D_Engine",
"label": "Compiler and Launch",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"version": "2.0.0"
}