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;
|
||||
|
||||
Reference in New Issue
Block a user