2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2020-09-24 00:43:27 -04:00
|
|
|
public class TextureFormatETC2 : ModuleRules
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
2020-09-24 00:43:27 -04:00
|
|
|
public TextureFormatETC2(ReadOnlyTargetRules Target) : base(Target)
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
2021-07-14 15:26:40 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(new string[]
|
|
|
|
|
{
|
|
|
|
|
"DerivedDataCache",
|
|
|
|
|
"Engine",
|
|
|
|
|
"TargetPlatform",
|
|
|
|
|
"TextureCompressor",
|
|
|
|
|
});
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2021-07-14 15:26:40 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
|
|
|
|
"ImageCore",
|
|
|
|
|
"ImageWrapper",
|
|
|
|
|
"TextureBuild",
|
|
|
|
|
});
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2022-05-09 07:02:13 -04:00
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "etc2comp");
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|