Files
UnrealEngineUWP/Engine/Source/Programs/SlateViewer/SlateViewer.Target.cs
ryan gerleve 6969dd4bbb Copying //UE4/Dev-Networking to Dev-Main (//UE4/Dev-Main) [at] 4804506
#rb none
#rnx

#ROBOMERGE-OWNER: jason.bestimt
#ROBOMERGE-AUTHOR: ryan.gerleve
#ROBOMERGE-SOURCE: CL 4804559 in //UE4/Main/...
#ROBOMERGE-BOT: DEVVR (Main -> Dev-VR)

[CL 4804563 by ryan gerleve in Dev-VR branch]
2019-01-24 16:28:06 -05:00

34 lines
969 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
[SupportedPlatforms(UnrealTargetPlatform.IOS)]
public class SlateViewerTarget : TargetRules
{
public SlateViewerTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
LaunchModuleName = "SlateViewer";
ExtraModuleNames.Add("EditorStyle");
bBuildDeveloperTools = false;
// SlateViewer 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;
// SlateViewer.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;
}
}