Files
punk-n-spray-raylib-c/.vscode/tasks.json
2026-03-05 15:11:09 +01:00

35 lines
752 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build debug",
"type": "process",
"command": "make",
"args": [],
"group": {
"kind": "build",
"isDefault": false
},
"problemMatcher": [
"$gcc"
]
},
{
"label": "build release",
"type": "process",
"command": "make",
"args": [],
"problemMatcher": [
"$gcc"
]
},
{
"label": "clean",
"type": "process",
"command": "make",
"args": [
"clean"
]
}
]
}