Files
UnrealEngineUWP/Engine/Source/Runtime/Android/AndroidRuntimeSettings/AndroidRuntimeSettings.Build.cs
florin pascu 367836ea48 First part of TargetPlatform(TP) refactor into TargetPlatformSettings(TPS) and TargetPlatformControls(TPC)
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]
2024-01-29 04:50:19 -05:00

36 lines
866 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AndroidRuntimeSettings : ModuleRules
{
public AndroidRuntimeSettings(ReadOnlyTargetRules Target) : base(Target)
{
BinariesSubFolder = "Android";
PublicDependencyModuleNames.Add("AudioPlatformConfiguration");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine"
}
);
if (Target.Type == TargetType.Editor || Target.Type == TargetType.Program)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"TargetPlatform"
}
);
PrivateIncludePathModuleNames.Add("AndroidTargetPlatform");
PrivateIncludePathModuleNames.Add("AndroidTargetPlatformControls");
}
}
}