Files
UnrealEngineUWP/Engine/Source/Editor/UndoHistory/UndoHistory.Build.cs
brooke hubert 48113fc77e Adding EditorFramework to build.cs files
#rnx
#Jira UE-96448
#rb chris.gagnon

[CL 14114839 by brooke hubert in ue5-main branch]
2020-08-14 13:24:16 -04:00

39 lines
719 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class UndoHistory : ModuleRules
{
public UndoHistory(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"CoreUObject",
"EditorStyle",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorFramework",
"UnrealEd",
"ApplicationCore"
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Editor/UndoHistory/Private",
"Editor/UndoHistory/Private/Widgets",
"Editor/UndoHistory/Private/Classes"
}
);
}
}
}