Files
UnrealEngineUWP/Engine/Source/Runtime/Android/AndroidLocalNotification/AndroidLocalNotification.Build.cs
christopher waters f0b834540e Cleaning up a number of direct module includes.
[CL 24253328 by christopher waters in ue5-main branch]
2023-02-16 04:13:28 -05:00

26 lines
488 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AndroidLocalNotification : ModuleRules
{
public AndroidLocalNotification(ReadOnlyTargetRules Target) : base(Target)
{
BinariesSubFolder = "Android";
PublicIncludePathModuleNames.AddRange(new string[]
{
"AndroidLocalNotification",
"Engine",
});
PrivateDependencyModuleNames.AddRange(new string[]
{
"Core",
"CoreUObject",
"Engine",
"Launch"
});
}
}