Files
UnrealEngineUWP/Engine/Plugins/Runtime/AndroidDeviceProfileSelector/Source/AndroidDeviceProfileCommandlets/AndroidDeviceProfileCommandlets.Build.cs
bryan sefcik 91c57d395e Removed redundant module includes.
#preflight 645d4bf3aa3c584c0b5b3a67

[CL 25435653 by bryan sefcik in ue5-main branch]
2023-05-11 16:48:21 -04:00

32 lines
640 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
using System.IO;
using UnrealBuildTool;
public class AndroidDeviceProfileCommandlets : ModuleRules
{
public AndroidDeviceProfileCommandlets(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.Add("Developer/Android/AndroidDeviceDetection/Public");
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Engine",
"Json",
"JsonUtilities",
"AndroidDeviceProfileSelector",
"PIEPreviewDeviceSpecification"
}
);
}
}