You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Chris.Babcock, David.Harvey, Nicholas.Frechette [CL 33101826 by josh adams in ue5-main branch]
31 lines
689 B
C#
31 lines
689 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ImageWriteQueue : ModuleRules
|
|
{
|
|
protected virtual bool bUseGIOThreadPool => Target.IsInPlatformGroup(UnrealPlatformGroup.IOS) || Target.IsInPlatformGroup(UnrealPlatformGroup.Android);
|
|
|
|
public ImageWriteQueue(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"ImageCore",
|
|
"ImageWrapper",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Engine",
|
|
"RenderCore",
|
|
"RHI",
|
|
}
|
|
);
|
|
|
|
PrivateDefinitions.Add("UE_IWQ_USE_GIOTHREADPOOL=" + (bUseGIOThreadPool ? "1" : "0"));
|
|
}
|
|
}
|