Files
UnrealEngineUWP/Engine/Source/Runtime/Online/ImageDownload/ImageDownload.Build.cs
Laurent Delayen e586cd3a8f Dev to Main integration from CL #2446290
[CL 2456855 by Laurent Delayen in Main branch]
2015-02-23 15:58:14 -05:00

21 lines
375 B
C#

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