This commit is contained in:
2025-07-09 13:17:20 +03:00
parent cb4229905d
commit 912f3e5368
5 changed files with 79 additions and 11 deletions

18
.vscode/tasks.json vendored
View File

@@ -13,7 +13,8 @@
"label": "CMake: clean rebuild",
"command": "build",
"targets": [
"GuiTest",
"Editor",
"Game",
"0_Bootstrap",
"TerrainTest",
"Procedural"
@@ -27,7 +28,8 @@
"label": "CMake: clean rebuild",
"command": "cleanRebuild",
"targets": [
"GuiTest",
"Editor",
"Game",
"0_Bootstrap",
"TerrainTest",
"Procedural"
@@ -57,6 +59,18 @@
"group": "build",
"problemMatcher": [],
"detail": "CMake clean rebuild task"
},
{
"type": "cmake",
"label": "CMake: build",
"command": "build",
"targets": [
"Editor",
"Game"
],
"group": "build",
"problemMatcher": [],
"detail": "CMake build task"
}
]
}