2019-12-26 23:01:54 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2016-12-13 11:58:16 -05:00
|
|
|
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
|
2019-05-24 11:51:54 -04:00
|
|
|
[SupportedPlatforms("IOS")]
|
2014-03-14 14:13:41 -04:00
|
|
|
public class SlateViewerTarget : TargetRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public SlateViewerTarget(TargetInfo Target) : base(Target)
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
|
|
|
|
Type = TargetType.Program;
|
2016-12-13 11:58:16 -05:00
|
|
|
LinkType = TargetLinkType.Monolithic;
|
2017-01-30 16:52:08 -05:00
|
|
|
|
|
|
|
|
LaunchModuleName = "SlateViewer";
|
|
|
|
|
ExtraModuleNames.Add("EditorStyle");
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2019-01-14 12:15:37 -05:00
|
|
|
bBuildDeveloperTools = false;
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
// SlateViewer doesn't ever compile with the engine linked in
|
2017-07-21 12:42:36 -04:00
|
|
|
bCompileAgainstEngine = false;
|
2014-09-10 06:43:48 -04:00
|
|
|
|
|
|
|
|
// We need CoreUObject compiled in as the source code access module requires it
|
2017-07-21 12:42:36 -04:00
|
|
|
bCompileAgainstCoreUObject = true;
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
// SlateViewer.exe has no exports, so no need to verify that a .lib and .exp file was emitted by
|
|
|
|
|
// the linker.
|
2018-02-27 17:30:35 -05:00
|
|
|
bHasExports = false;
|
2019-01-17 10:52:45 -05:00
|
|
|
|
|
|
|
|
// Make sure to get all code in SlateEditorStyle compiled in
|
|
|
|
|
bBuildDeveloperTools = true;
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|