2024-04-12 09:42:41 -07:00
|
|
|
using BuildSettingsVersion = UnrealBuildTool.BuildSettingsVersion;
|
|
|
|
using TargetInfo = UnrealBuildTool.TargetInfo;
|
|
|
|
using TargetRules = UnrealBuildTool.TargetRules;
|
|
|
|
using TargetType = UnrealBuildTool.TargetType;
|
|
|
|
|
|
|
|
public class GasaEditorTarget : TargetRules
|
|
|
|
{
|
|
|
|
public GasaEditorTarget(TargetInfo Target) : base(Target)
|
|
|
|
{
|
|
|
|
Type = TargetType.Editor;
|
|
|
|
|
|
|
|
DefaultBuildSettings = BuildSettingsVersion.Latest;
|
|
|
|
|
2024-04-12 19:05:09 -07:00
|
|
|
bUseUnityBuild = false;
|
2024-04-12 23:31:49 -07:00
|
|
|
bUseXGEController = false;
|
2024-04-12 19:05:09 -07:00
|
|
|
|
2024-04-12 09:42:41 -07:00
|
|
|
ExtraModuleNames.Add("Gasa");
|
|
|
|
ExtraModuleNames.Add("GasaEditor");
|
|
|
|
}
|
|
|
|
}
|