27 lines
548 B
C#
27 lines
548 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class UTAD_UI : ModuleRules
|
|
{
|
|
public UTAD_UI(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
PublicDependencyModuleNames.AddRange(new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"NavigationSystem",
|
|
"AIModule",
|
|
"Niagara",
|
|
"EnhancedInput",
|
|
"UMG",
|
|
"Slate",
|
|
"SlateCore"
|
|
});
|
|
}
|
|
}
|