You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb charles.bloom, fabian.giesen #preflight 64034ea5a20ddf1bf41816df [CL 24513276 by Dmitriy Dyomin in ue5-main branch]
28 lines
526 B
C#
28 lines
526 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class TextureFormatASTC : ModuleRules
|
|
{
|
|
public TextureFormatASTC(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.AddRange(new string[]
|
|
{
|
|
"DerivedDataCache",
|
|
"Engine",
|
|
"TargetPlatform",
|
|
"TextureCompressor",
|
|
});
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[]
|
|
{
|
|
"Core",
|
|
"ImageCore",
|
|
"ImageWrapper",
|
|
"TextureBuild",
|
|
"TextureFormatIntelISPCTexComp",
|
|
"astcenc",
|
|
});
|
|
}
|
|
}
|