You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
TPS doesn't need SDK and will be used to get info about the platform TPC requires SDK AndroidTP has been converted to the new system #jira UE-200883 #rb Jack.Porter [CL 30963885 by florin pascu in ue5-main branch]
28 lines
549 B
C#
28 lines
549 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class AndroidTargetPlatformSettings : ModuleRules
|
|
{
|
|
public AndroidTargetPlatformSettings(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
BinariesSubFolder = "Android";
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"TargetPlatform",
|
|
"DesktopPlatform",
|
|
}
|
|
);
|
|
|
|
if (Target.bCompileAgainstEngine)
|
|
{
|
|
PrivateDependencyModuleNames.Add("Engine");
|
|
}
|
|
}
|
|
}
|