Files
UnrealEngineUWP/Engine/Source/Programs/BaseTextureBuildWorker/BaseTextureBuildWorker.Build.cs
zousar shaker a48d9e9497 Expand texture build functions to all current texture formats.
Expand texture build workers to all current platform specific texture formats, or added build functions to the base build worker.  Workers are buildable, but not discoverable yet as discovery will be refactored soon to use Target Receipts.
Reduce boilerplate involved in setup of build worker.

#rb devin.doucette

#ROBOMERGE-SOURCE: CL 16853856 in //UE5/Main/...
#ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v836-16769935)

[CL 16853877 by zousar shaker in ue5-release-engine-test branch]
2021-07-14 15:27:36 -04:00

28 lines
565 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class BaseTextureBuildWorker : TextureBuildWorker
{
public BaseTextureBuildWorker(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(new string[]
{
"CoreUObject",
"Engine",
});
PrivateDependencyModuleNames.AddRange(new string[]
{
"Core",
"TextureBuild",
"TextureFormat",
"TextureFormatASTC",
"TextureFormatDXT",
"TextureFormatETC2",
"TextureFormatIntelISPCTexComp",
"TextureFormatUncompressed",
});
}
}