better sway, exe customizations + logo

This commit is contained in:
2022-04-23 13:40:22 +03:00
parent 8cc47d1b2f
commit eba26ee7fe
12 changed files with 100 additions and 149 deletions

View File

@@ -7,15 +7,22 @@ public class GameTarget : GameProjectTarget
{
base.Init();
//OutputName = "Goake";
// Reference the modules for game
Modules.Add("Game");
Modules.Add("FidelityFXFSR");
//Modules.Add("Cabrito");
OutputName = "Goake";
Win32ResourceFile = @"C:\dev\GoakeFlax\Source\goake.rc";
IsPreBuilt = false;
Architectures = new TargetArchitecture[] { TargetArchitecture.x64 };
Platforms = new TargetPlatform[] { TargetPlatform.Windows };
LinkType = TargetLinkType.Monolithic;
if (LinkType == TargetLinkType.Monolithic)
{
Modules.Add("Main");
OutputType = TargetOutputType.Executable;
}
Modules.Add("Game");
Modules.Add("FidelityFXFSR");
}
}