Files
UnrealEngineUWP/Engine/Source/Developer/TextureCompressor/TextureCompressor.Build.cs
Joe Kirchoff 284689b856 Tasks: Suppress clang static analysis warning when deleting refcounted FTaskBase
#rnx
#rb Andriy.Tylychko
#jira  UE-169902
#preflight 6398d4a635203bc7aa86f05c

[CL 23495713 by Joe Kirchoff in ue5-main branch]
2022-12-13 14:49:42 -05:00

27 lines
522 B
C#

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