let's try this?
Some checks failed
Build / Build Game (push) Has been cancelled

This commit is contained in:
2026-02-28 22:30:53 -05:00
parent bc8fe78fce
commit 0d9d8ff96f
2 changed files with 62 additions and 6 deletions

View File

@@ -6,6 +6,38 @@
"patch": 0
},
"configurePresets": [
{
"name": "linux-debug",
"displayName": "Linux Debug",
"description": "Ninja Debug (Linux, native)",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/linux-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/linux-debug"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "linux-release",
"displayName": "Linux Release",
"description": "Ninja Release (Linux, native)",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/linux-release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/linux-release"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "x64-Debug",
"displayName": "x64 Debug",
@@ -40,6 +72,14 @@
}
],
"buildPresets": [
{
"name": "linux-debug",
"configurePreset": "linux-debug"
},
{
"name": "linux-release",
"configurePreset": "linux-release"
},
{
"name": "x64-Debug",
"configurePreset": "x64-Debug",