Game-Engine/.vscode/tasks.json
2025-04-20 04:39:29 +02:00

17 lines
No EOL
332 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build engine",
"type": "shell",
"command": "cmake --build build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "Build the engine executable"
}
]
}