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;
|
|
|
|
|
|
|
|
|
|
public class TextureFormatDXT : ModuleRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public TextureFormatDXT(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
|
|
|
|
2016-02-03 15:40:40 -05:00
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "nvTextureTools");
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|