Files
UnrealEngineUWP/Engine/Source/Editor/EnvironmentQueryEditor/EnvironmentQueryEditor.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

57 lines
1.2 KiB
C#

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