Files
UnrealEngineUWP/Engine/Source/Developer/UndoHistory/UndoHistory.Build.cs
Dominik Peacock 37305aef15 Make dependencyy from UndoHistory to UnrealEd optional
#jira UE-143320
#rb Matt.Johnson
#rb Lauren.Barnes
#preflight 621642ffbd3bdd9086d72271

[CL 19090889 by Dominik Peacock in ue5-main branch]
2022-02-23 09:45:34 -05:00

27 lines
459 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[] {
"ApplicationCore",
"CoreUObject",
"InputCore",
"Slate",
"SlateCore",
}
);
}
}
}