CPP-SDL-Template-premake/.vscode/tasks.json
2024-09-18 22:53:52 +02:00

27 lines
No EOL
760 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build debug",
"type": "shell",
"command": "premake5 ecc && premake5 gmake2 && make",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build release",
"type": "shell",
"command": "premake5 ecc && premake5 gmake2 && make config=release",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
}
}
]
}