Fixed debug builds for ScriptCore and GEHelper

This commit is contained in:
Simon Lübeß
2026-04-11 09:39:13 +02:00
parent 10e2294f9c
commit 3fd5452146
3 changed files with 11 additions and 5 deletions
+8 -2
View File
@@ -1,17 +1,23 @@
FileVersion = 1 FileVersion = 1
Dependencies = {corlib = "*", corlib = "*", DirectX = "*"}
[Project] [Project]
Name = "GlitchyEngineHelper" Name = "GlitchyEngineHelper"
TargetType = "BeefLib" TargetType = "BeefLib"
StartupObject = "GlitchyEngineHelper.Program" StartupObject = "GlitchyEngineHelper.Program"
[Dependencies]
corlib = "*"
corlib = "*"
DirectX = "*"
[Configs.Debug.Win64] [Configs.Debug.Win64]
BuildCommandsOnCompile = "IfFilesChanged" BuildCommandsOnCompile = "IfFilesChanged"
BuildCommandsOnRun = "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-debug/Debug/GlitchyEngineHelper.lib", "ws2_32.lib", "Winmm.lib", "OleAut32.lib", "Bcrypt.lib"]
PreBuildCmds = ["$(WorkspaceDir)/bin/BuildTool.exe build GlitchyEngineHelper -n --workspace $(WorkspaceDir) --debug"]
[Configs.Release.Win64] [Configs.Release.Win64]
BuildCommandsOnCompile = "IfFilesChanged" BuildCommandsOnCompile = "IfFilesChanged"
BuildCommandsOnRun = "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-debug/GlitchyEngineHelper.lib", "ws2_32.lib", "Winmm.lib", "OleAut32.lib", "Bcrypt.lib"]
PreBuildCmds = ["$(WorkspaceDir)/bin/BuildTool.exe build GlitchyEngineHelper -n --workspace $(WorkspaceDir) --release"]
+1 -1
View File
@@ -4,7 +4,7 @@
{ {
"name": "windows-base", "name": "windows-base",
"hidden": true, "hidden": true,
"generator": "Ninja", "generator": "Visual Studio 17 2022",
"binaryDir": "${sourceDir}/out/build/${presetName}", "binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install/${presetName}", "installDir": "${sourceDir}/out/install/${presetName}",
"cacheVariables": { "cacheVariables": {
+2 -2
View File
@@ -5,7 +5,7 @@ Name = "ScriptCore"
TargetType = "CustomBuild" TargetType = "CustomBuild"
[Configs.Debug.Win64] [Configs.Debug.Win64]
PostBuildCmds = ["dotnet build \"$(WorkspaceDir)/ScriptCore/ScriptCore.csproj\" -c Debug"] PostBuildCmds = ["$(WorkspaceDir)/bin/BuildTool.exe build ScriptCore -n --workspace $(WorkspaceDir) --debug"]
[Configs.Release.Win64] [Configs.Release.Win64]
PostBuildCmds = ["dotnet build \"$(WorkspaceDir)/ScriptCore/ScriptCore.csproj\" -c Release"] PostBuildCmds = ["$(WorkspaceDir)/bin/BuildTool.exe build ScriptCore -n --workspace $(WorkspaceDir) --Release"]