Files
UnrealEngineUWP/Engine/Source/Developer/Android/AndroidTargetPlatform/AndroidTargetPlatform.Build.cs
Daniel Lamb b290ae81bf Added back in the DesktopPlatform to androidtargetPlatform.build.cs.
[CL 2096444 by Daniel Lamb in Main branch]
2014-06-05 19:50:37 -04:00

42 lines
841 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AndroidTargetPlatform : ModuleRules
{
public AndroidTargetPlatform(TargetInfo Target)
{
BinariesSubFolder = "Android";
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"TargetPlatform",
"DesktopPlatform",
"AndroidDeviceDetection",
}
);
PublicIncludePaths.AddRange(
new string[]
{
"Runtime/Core/Public/Android"
}
);
if (UEBuildConfiguration.bCompileAgainstEngine)
{
PrivateDependencyModuleNames.Add("Engine");
PrivateIncludePathModuleNames.Add("TextureCompressor"); //@todo android: AndroidTargetPlatform.Build
}
PrivateIncludePaths.AddRange(
new string[]
{
"Developer/AndroidTargetPlatform/Classes"
}
);
}
}