mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Provide build config when building Helper
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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.
|
||||
Reference in New Issue
Block a user