You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[REVIEW] [at]peter.engstrom #preflight 6479fe621c5c2b3fa2c030b2 [CL 25764111 by david punsetmartinez in ue5-main branch]
41 lines
653 B
C#
41 lines
653 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class UIFramework : ModuleRules
|
|
{
|
|
public UIFramework(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"DeveloperSettings",
|
|
"Engine",
|
|
"FieldNotification",
|
|
"LocalizableMessage",
|
|
"ModelViewViewModel",
|
|
"SlateCore",
|
|
"Slate",
|
|
"StructUtils",
|
|
"UMG",
|
|
}
|
|
);
|
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"NetCore",
|
|
}
|
|
);
|
|
|
|
SetupIrisSupport(Target);
|
|
}
|
|
}
|