This repository has been archived on 2024-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
HomdEngine/.vscode/tasks.json
2023-05-27 17:44:20 +03:00

41 lines
966 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "cmake",
"label": "CMake: configure",
"command": "configure",
"problemMatcher": [],
"detail": "CMake template configure task",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
},
{
"type": "cmake",
"label": "CMake: build",
"command": "build",
"targets": ["all"],
"group": "build",
"problemMatcher": [],
"detail": "CMake template build task",
"dependsOn": ["CMake: configure"],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
}
]
}