Files
UnrealEngineUWP/Engine/Source/Editor/DataTableEditor/DataTableEditor.Build.cs
Nick-Pearson d1aebcdbec PR #4208: Added support for copy, paste and duplicate on data table rows (Contributed by Nick-Pearson)
#jira UE-52303
#rb jason.stasik

[CL 5813515 by Jason Stasik in Dev-Editor branch]
2019-04-09 17:09:42 -04:00

30 lines
610 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class DataTableEditor : ModuleRules
{
public DataTableEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.Add("LevelEditor");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"ApplicationCore",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"PropertyEditor",
"UnrealEd",
"Json"
}
);
DynamicallyLoadedModuleNames.Add("WorkspaceMenuStructure");
}
}