Files
UnrealEngineUWP/Engine/Source/Developer/TextureFormatETC2/TextureFormatETC2.Build.cs
Dmitriy Dyomin ead3833e1a Added etc2comp as a ETC2 texture compressor
#rb Charles.Bloom, Will.Damon
#jira UE-149510
#preflight 6278f306822bdc69f0ec8b9a

[CL 20100996 by Dmitriy Dyomin in ue5-main branch]
2022-05-09 07:02:13 -04:00

28 lines
543 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TextureFormatETC2 : ModuleRules
{
public TextureFormatETC2(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(new string[]
{
"DerivedDataCache",
"Engine",
"TargetPlatform",
"TextureCompressor",
});
PrivateDependencyModuleNames.AddRange(new string[]
{
"Core",
"ImageCore",
"ImageWrapper",
"TextureBuild",
});
AddEngineThirdPartyPrivateStaticDependencies(Target, "etc2comp");
}
}