You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Part 1 of 3 #jira UE-197974 #rb josh.adams #fyi florin.pascu [CL 31518854 by adam kinge in 5.4 branch]
45 lines
898 B
C#
45 lines
898 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class IOSTargetPlatform : ModuleRules
|
|
{
|
|
public IOSTargetPlatform(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
BinariesSubFolder = "IOS";
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"TargetPlatform",
|
|
"DesktopPlatform",
|
|
"LaunchDaemonMessages",
|
|
"Projects",
|
|
"Json",
|
|
"AudioPlatformConfiguration",
|
|
"Sockets",
|
|
"Networking"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"MessagingCommon",
|
|
"TargetDeviceServices",
|
|
}
|
|
);
|
|
|
|
if (Target.bCompileAgainstEngine)
|
|
{
|
|
PrivateDependencyModuleNames.Add("Engine");
|
|
}
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Mac)
|
|
{
|
|
PublicAdditionalLibraries.Add("/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/MobileDevice");
|
|
}
|
|
}
|
|
}
|