Files
UnrealEngineUWP/Engine/Source/Runtime/Online/ImageDownload/ImageDownload.Build.cs
rafa lecina 033353334c Fix wrong color format used in FWebImage downloaded images depending on the actual image format
#jira UE-192503
[REVIEW] [at]Michael.Kirzinger, [at]Chris.Varnsverry

[CL 27064584 by rafa lecina in ue5-main branch]
2023-08-14 04:23:38 -04:00

22 lines
412 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ImageDownload : ModuleRules
{
public ImageDownload(ReadOnlyTargetRules Target) : base(Target)
{
PublicDefinitions.Add("IMAGEDOWNLOAD_PACKAGE=1");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"HTTP",
"SlateCore",
"ImageCore",
"ImageWrapper",
}
);
}
}