You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
should only be pulled from TextureFormatDXT #preflight 62420bed9f404234142e2609 #rb none [CL 19532444 by charles bloom in ue5-main branch]
26 lines
493 B
C#
26 lines
493 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");
|
|
}
|
|
}
|