Provide build config when building Helper

This commit is contained in:
Simon Lübeß
2026-07-19 16:54:30 +02:00
parent e4e86bd21d
commit 3095c8f0bb
3 changed files with 4 additions and 2 deletions
BIN
View File
Binary file not shown.
@@ -17,13 +17,13 @@ class GlitchyEngineHelperModule : Module
if (buildInfo.BuildDebug)
{
await RunAsync("cmake", "--preset x64-debug");
await RunAsync("cmake", "--build --preset x64-debug");
await RunAsync("cmake", "--build --preset x64-debug --config Debug");
}
if (buildInfo.BuildRelease)
{
await RunAsync("cmake", "--preset x64-release");
await RunAsync("cmake", "--build --preset x64-release");
await RunAsync("cmake", "--build --preset x64-release --config Release");
}
return true;
+2
View File
@@ -0,0 +1,2 @@
## Rebuilding the buildtool:
The `BuildTool.exe` is checked into the repository. When changing it's code use `dotnet publish` in `bin/BuildTool` to build the new exe and commit it.