Files
UnrealEngineUWP/Engine/Source/Programs/SlateUGS/SlateUGS.Target.cs
UnrealBot 73409369c0 Branch snapshot for CL 21319338
[CL 21319338 in ue5-main branch]
2022-08-10 16:03:37 +00:00

32 lines
858 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class SlateUGSTarget : TargetRules
{
public SlateUGSTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
LaunchModuleName = "SlateUGS";
bBuildDeveloperTools = false;
// SlateUGS doesn't ever compile with the engine linked in
bCompileAgainstEngine = false;
// We need CoreUObject compiled in as the source code access module requires it
bCompileAgainstCoreUObject = true;
// SlateUGS.exe has no exports, so no need to verify that a .lib and .exp file was emitted by
// the linker.
bHasExports = false;
// Make sure to get all code in SlateEditorStyle compiled in
bBuildDeveloperTools = true;
}
}