Files
UnrealEngine/Engine/Source/Runtime/ImageWriteQueue/ImageWriteQueue.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

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"));
}
}