You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb Andriy.Tylychko #jira UE-169902 #preflight 6398d4a635203bc7aa86f05c [CL 23495713 by Joe Kirchoff in ue5-main branch]
27 lines
522 B
C#
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");
|
|
}
|
|
}
|