2014-03-14 14:13:41 -04:00
|
|
|
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class TextureEditor : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public TextureEditor(TargetInfo Target)
|
|
|
|
|
{
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"MainFrame",
|
|
|
|
|
"WorkspaceMenuStructure",
|
|
|
|
|
"PropertyEditor"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Editor/TextureEditor/Private",
|
|
|
|
|
"Editor/TextureEditor/Private/Menus",
|
|
|
|
|
"Editor/TextureEditor/Private/Models",
|
|
|
|
|
"Editor/TextureEditor/Private/Widgets",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2014-04-23 19:18:58 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Settings",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
}
|
|
|
|
|
);
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"Engine",
|
|
|
|
|
"RenderCore",
|
|
|
|
|
"ShaderCore",
|
|
|
|
|
"RHI",
|
|
|
|
|
"Slate",
|
|
|
|
|
"EditorStyle",
|
|
|
|
|
"UnrealEd"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|