Files
UnrealEngine/Engine/Source/Runtime/Online/ImageDownload/ImageDownload.Build.cs
2025-05-18 13:04:45 +08: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",
}
);
}
}