You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb ben.ingram Undo //UE5/Main/Engine/Source/... changelist 16172520 [CL 16185594 by Zousar Shaker in ue5-main branch]
26 lines
491 B
C#
26 lines
491 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",
|
|
"TextureFormat",
|
|
}
|
|
);
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "nvTextureTools");
|
|
}
|
|
}
|