From 85b3fd5bc9984faaca690452c81d8add2adfd76d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Sun, 2 Aug 2026 12:33:54 +0200 Subject: [PATCH] Fix release configurations --- GlitchyEngineHelper/BeefProj.toml | 2 +- GlitchyEngineHelper/CMakePresets.json | 6 ++++-- ScriptCore/BeefProj.toml | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/GlitchyEngineHelper/BeefProj.toml b/GlitchyEngineHelper/BeefProj.toml index c85ecdd..d2679ba 100644 --- a/GlitchyEngineHelper/BeefProj.toml +++ b/GlitchyEngineHelper/BeefProj.toml @@ -18,5 +18,5 @@ PreBuildCmds = ["$(WorkspaceDir)/bin/BuildTool.exe build GlitchyEngineHelper -n [Configs.Release.Win64] BuildCommandsOnCompile = "IfFilesChanged" BuildCommandsOnRun = "IfFilesChanged" -LibPaths = ["$(ProjectDir)/out/build/x64-debug/GlitchyEngineHelper.lib", "ws2_32.lib", "Winmm.lib", "OleAut32.lib", "Bcrypt.lib"] +LibPaths = ["$(ProjectDir)/out/build/x64-release/Release/GlitchyEngineHelper.lib", "ws2_32.lib", "Winmm.lib", "OleAut32.lib", "Bcrypt.lib"] PreBuildCmds = ["$(WorkspaceDir)/bin/BuildTool.exe build GlitchyEngineHelper -n --workspace $(WorkspaceDir) --release"] diff --git a/GlitchyEngineHelper/CMakePresets.json b/GlitchyEngineHelper/CMakePresets.json index 525ea04..b50ce1d 100644 --- a/GlitchyEngineHelper/CMakePresets.json +++ b/GlitchyEngineHelper/CMakePresets.json @@ -61,11 +61,13 @@ "buildPresets": [ { "name": "x64-debug", - "configurePreset": "x64-debug" + "configurePreset": "x64-debug", + "configuration": "Debug" }, { "name": "x64-release", - "configurePreset": "x64-release" + "configurePreset": "x64-release", + "configuration": "Release" } ] } diff --git a/ScriptCore/BeefProj.toml b/ScriptCore/BeefProj.toml index 7945d6a..d8d240f 100644 --- a/ScriptCore/BeefProj.toml +++ b/ScriptCore/BeefProj.toml @@ -8,4 +8,4 @@ TargetType = "CustomBuild" PostBuildCmds = ["$(WorkspaceDir)/bin/BuildTool.exe build ScriptCore -n --workspace $(WorkspaceDir) --debug"] [Configs.Release.Win64] -PostBuildCmds = ["$(WorkspaceDir)/bin/BuildTool.exe build ScriptCore -n --workspace $(WorkspaceDir) --Release"] +PostBuildCmds = ["$(WorkspaceDir)/bin/BuildTool.exe build ScriptCore -n --workspace $(WorkspaceDir) --release"]