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:27:36 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(new string[]
|
|
|
|
|
{
|
|
|
|
|
"DerivedDataCache",
|
|
|
|
|
"Engine",
|
|
|
|
|
"TargetPlatform",
|
|
|
|
|
"TextureCompressor",
|
|
|
|
|
});
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2021-07-14 15:27:36 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
|
|
|
|
"ImageCore",
|
|
|
|
|
"ImageWrapper",
|
|
|
|
|
"TextureBuild",
|
|
|
|
|
});
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2015-07-15 09:20:40 -04:00
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64)
|
|
|
|
|
{
|
2016-02-03 15:40:40 -05:00
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "QualcommTextureConverter");
|
2015-07-15 09:20:40 -04:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-02-03 15:40:40 -05:00
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "QualcommTextureConverter");
|
2015-07-15 09:20:40 -04:00
|
|
|
}
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|