Updated almost all stuff

This commit is contained in:
2025-06-14 16:20:47 +03:00
parent 756fb3bdd0
commit a1f1e09af6
152 changed files with 53441 additions and 26 deletions

7
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"cmake.generator": "Unix Makefiles",
"cmake.configureSettings": {
"CMAKE_PREFIX_PATH": "/media/slapin/library/ogre/ogre-sdk"
},
"cmake.buildDirectory": "${workspaceFolder}/build-vscode"
}

62
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,62 @@
{
"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"
}
]
}