Files
UnrealEngineUWP/Engine/Source/Editor/TextureEditor/TextureEditor.Build.cs
dan thompson 256d6ad406 Added a way to view an estimate of benefits of RDO compression to the texture editor.
#rb fabian.giesen
#preflight 61dc7642cc3f3367af73c928

#ROBOMERGE-AUTHOR: dan.thompson
#ROBOMERGE-SOURCE: CL 18562607 in //UE5/Release-5.0/... via CL 18562637
#ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v899-18417669)

[CL 18562658 by dan thompson in ue5-release-engine-test branch]
2022-01-10 13:34:36 -05:00

57 lines
1.1 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TextureEditor : ModuleRules
{
public TextureEditor(ReadOnlyTargetRules Target) : base(Target)
{
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"WorkspaceMenuStructure"
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Editor/TextureEditor/Private",
"Editor/TextureEditor/Private/Menus",
"Editor/TextureEditor/Private/Models",
"Editor/TextureEditor/Private/Widgets",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Settings",
"UnrealEd",
"PropertyEditor"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"InputCore",
"Engine",
"RenderCore",
"RHI",
"Slate",
"SlateCore",
"EditorStyle",
"EditorFramework",
"UnrealEd",
"PropertyEditor",
"MediaUtils",
"EditorWidgets",
"MediaAssets",
"DerivedDataCache",
"DeveloperToolSettings"
}
);
}
}