2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class TextureFormatAndroid : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public TextureFormatAndroid(TargetInfo Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"TargetPlatform",
|
|
|
|
|
"TextureCompressor",
|
|
|
|
|
"Engine"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"ImageCore",
|
|
|
|
|
"ImageWrapper"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2015-07-15 09:20:40 -04:00
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64)
|
|
|
|
|
{
|
|
|
|
|
AddThirdPartyPrivateStaticDependencies(Target, "QualcommTextureConverter");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
AddThirdPartyPrivateStaticDependencies(Target, "QualcommTextureConverter");
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|