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 TextureFormatPVR : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public TextureFormatPVR( TargetInfo Target )
|
|
|
|
|
{
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(new string[] { "TargetPlatform", "TextureCompressor", "Engine" });
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "Core", "ImageCore", "ImageWrapper" });
|
|
|
|
|
|
2015-08-28 06:22:07 -04:00
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64 || Target.Platform == UnrealTargetPlatform.Win32)
|
|
|
|
|
{
|
|
|
|
|
RuntimeDependencies.Add(new RuntimeDependency("$(EngineDir)/Binaries/ThirdParty/ImgTec/PVRTexToolCLI.exe"));
|
|
|
|
|
}
|
|
|
|
|
else if (Target.Platform == UnrealTargetPlatform.Mac /*|| Target.Platform == UnrealTargetPlatform.Linux*/)
|
|
|
|
|
{
|
|
|
|
|
RuntimeDependencies.Add(new RuntimeDependency("$(EngineDir)/Binaries/ThirdParty/ImgTec/PVRTexToolCLI"));
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
//if (UEBuildConfiguration.bCompileLeanAndMeanUE == false)
|
|
|
|
|
//{
|
|
|
|
|
// PrivateDependencyModuleNames.Add("nvTextureTools");
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
}
|