You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-192503 [REVIEW] [at]Michael.Kirzinger, [at]Chris.Varnsverry [CL 27064584 by rafa lecina in ue5-main branch]
22 lines
412 B
C#
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",
|
|
}
|
|
);
|
|
}
|
|
}
|