Files
dmytro ivanov 9fc50fe3f1 Fixing quick launch not working on Android when using Zen Store and target device and host are on different networks
#jira UE-206905
#rb Chris.Babcock, Zousar.Shaker

[CL 31843354 by dmytro ivanov in ue5-main branch]
2024-02-27 12:08:30 -05:00

55 lines
959 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AndroidDeviceDetection : ModuleRules
{
public AndroidDeviceDetection( ReadOnlyTargetRules Target ) : base(Target)
{
BinariesSubFolder = "Android";
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Json",
"JsonUtilities",
"PIEPreviewDeviceSpecification",
"Zen"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"TcpMessaging",
}
);
if (Target.bCompileAgainstEngine)
{
PrivateDependencyModuleNames.Add("Engine");
}
if (Target.bBuildEditor)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"PIEPreviewDeviceProfileSelector",
"DesktopPlatform",
"SlateCore",
"Slate",
}
);
}
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
"TcpMessaging"
}
);
}
}