Fix release configurations

This commit is contained in:
Simon Lübeß
2026-08-02 12:33:54 +02:00
parent c56db0f069
commit 85b3fd5bc9
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -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"]
+4 -2
View File
@@ -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"
}
]
}
+1 -1
View File
@@ -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"]