// 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"); } }