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;
|
|
|
|
|
|
2019-05-24 11:51:54 -04:00
|
|
|
[SupportedPlatforms("IOS")]
|
2014-03-14 14:13:41 -04:00
|
|
|
public class UnrealLaunchDaemonTarget : TargetRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public UnrealLaunchDaemonTarget(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;
|
2014-03-14 14:13:41 -04:00
|
|
|
bUsesSlate = false;
|
|
|
|
|
//PlatformType = TargetRules.TargetPlatformType.Mobile;
|
|
|
|
|
//bRequiresUnrealHeaderGeneration = true;
|
2015-04-21 21:22:15 -04:00
|
|
|
AdditionalPlugins.Add("UdpMessaging");
|
2017-01-30 16:52:08 -05:00
|
|
|
|
|
|
|
|
LaunchModuleName = "UnrealLaunchDaemon";
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2019-01-14 12:11:24 -05:00
|
|
|
bBuildDeveloperTools = false;
|
2017-07-21 12:42:36 -04:00
|
|
|
bCompileAgainstEngine = false;
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2018-02-27 17:30:35 -05:00
|
|
|
bHasExports = false;
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|