Files
UnrealEngineUWP/Engine/Source/Editor/PropertyEditor/PropertyEditor.Build.cs
Allan Bentham a2b99bcb93 add feature level to UMaterialInterface::GetUsedTextures.
[CL 2235653 by Allan Bentham in Main branch]
2014-07-29 06:10:01 -04:00

61 lines
1.4 KiB
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class PropertyEditor : ModuleRules
{
public PropertyEditor(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"UnrealEd",
"ActorPickerMode",
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Editor/PropertyEditor/Private",
"Editor/PropertyEditor/Private/Presentation",
"Editor/PropertyEditor/Private/Presentation/PropertyTable",
"Editor/PropertyEditor/Private/Presentation/PropertyEditor",
"Editor/PropertyEditor/Private/Presentation/PropertyDetails",
"Editor/PropertyEditor/Private/UserInterface",
"Editor/PropertyEditor/Private/UserInterface/PropertyTable",
"Editor/PropertyEditor/Private/UserInterface/PropertyEditor",
"Editor/PropertyEditor/Private/UserInterface/PropertyTree",
"Editor/PropertyEditor/Private/UserInterface/PropertyDetails",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"MainFrame",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"EditorStyle",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorWidgets",
"Documentation",
"RHI",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"ContentBrowser",
"Documentation",
"MainFrame",
}
);
}
}