Files
UnrealEngineUWP/Engine/Source/Editor/EnvironmentQueryEditor/EnvironmentQueryEditor.Build.cs
Lukasz Furman dcd7345250 unified shared parts of AI editors (nested nodes, copy/paste/drag operations)
[CL 2456137 by Lukasz Furman in Main branch]
2015-02-23 10:30:16 -05:00

56 lines
1.2 KiB
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class EnvironmentQueryEditor : ModuleRules
{
public EnvironmentQueryEditor(TargetInfo Target)
{
PrivateIncludePaths.AddRange(
new string[] {
"Editor/GraphEditor/Private",
"Editor/AIGraph/Private",
"Editor/EnvironmentQueryEditor/Private",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetRegistry",
"AssetTools",
"PropertyEditor"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"InputCore",
"Engine",
"RenderCore",
"Slate",
"SlateCore",
"EditorStyle",
"UnrealEd",
"MessageLog",
"GraphEditor",
"PropertyEditor",
"AnimGraph",
"BlueprintGraph",
"AIGraph",
"AIModule",
}
);
PublicIncludePathModuleNames.Add("LevelEditor");
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"WorkspaceMenuStructure",
"PropertyEditor"
}
);
}
}