Files
ogre-prototype/.vscode/tasks.json
2025-06-14 16:20:47 +03:00

62 lines
1.1 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cmake",
"label": "CMake: configure",
"command": "configure",
"problemMatcher": [],
"detail": "CMake config"
},
{
"type": "cmake",
"label": "CMake: clean rebuild",
"command": "build",
"targets": [
"GuiTest",
"0_Bootstrap",
"TerrainTest",
"Procedural"
],
"group": "build",
"problemMatcher": [],
"detail": "CMake clean rebuild task"
},
{
"type": "cmake",
"label": "CMake: clean rebuild",
"command": "cleanRebuild",
"targets": [
"GuiTest",
"0_Bootstrap",
"TerrainTest",
"Procedural"
],
"group": "build",
"problemMatcher": [],
"detail": "CMake clean rebuild task"
},
{
"type": "cmake",
"label": "CMake: complete build",
"command": "build",
"targets": [
"all"
],
"group": "build",
"problemMatcher": [],
"detail": "CMake build"
},
{
"type": "cmake",
"label": "CMake: complete rebuild",
"command": "cleanRebuild",
"targets": [
"all"
],
"group": "build",
"problemMatcher": [],
"detail": "CMake clean rebuild task"
}
]
}