Files
UnrealEngineUWP/Engine/Source/Editor/AnimationBlueprintEditor/AnimationBlueprintEditor.Build.cs
Chris Gagnon 8fc25ea18e Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
#rb none

[CL 4676797 by Chris Gagnon in Dev-Editor branch]
2019-01-02 14:54:39 -05:00

65 lines
1.5 KiB
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AnimationBlueprintEditor : ModuleRules
{
public AnimationBlueprintEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.Add("Editor/AnimationBlueprintEditor/Private"); // For PCH includes (because they don't work with relative paths, yet)
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetRegistry",
"MainFrame",
"DesktopPlatform",
"SkeletonEditor",
"ContentBrowser",
"AssetTools",
"AnimationEditor",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"Slate",
"SlateCore",
"EditorStyle",
"Engine",
"UnrealEd",
"GraphEditor",
"InputCore",
"KismetWidgets",
"AnimGraph",
"PropertyEditor",
"EditorWidgets",
"BlueprintGraph",
"RHI",
"KismetCompiler",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"ContentBrowser",
"Documentation",
"MainFrame",
"DesktopPlatform",
"SkeletonEditor",
"AssetTools",
"AnimationEditor",
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Kismet",
"Persona",
}
);
}
}