Files
UnrealEngine/Engine/Source/Developer/TextureFormatDXT/TextureFormatDXT.Build.cs
2025-05-18 13:04:45 +08:00

27 lines
526 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TextureFormatDXT : ModuleRules
{
public TextureFormatDXT(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(new string[]
{
"DerivedDataCache",
"Engine",
"TextureCompressor",
});
PrivateDependencyModuleNames.AddRange(new string[]
{
"Core",
"ImageCore",
"ImageWrapper",
"TextureBuild",
});
AddEngineThirdPartyPrivateStaticDependencies(Target, "nvTextureTools");
}
}