You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
35 lines
883 B
C#
35 lines
883 B
C#
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class HTTP : ModuleRules
|
|
{
|
|
public HTTP(TargetInfo Target)
|
|
{
|
|
Definitions.Add("HTTP_PACKAGE=1");
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"Runtime/Online/HTTP/Private",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "Core" });
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win32 ||
|
|
Target.Platform == UnrealTargetPlatform.Win64)
|
|
{
|
|
AddThirdPartyPrivateStaticDependencies(Target, "WinInet");
|
|
if (!UnrealBuildTool.UnrealBuildTool.BuildingRocket() && !UnrealBuildTool.UnrealBuildTool.RunningRocket())
|
|
{
|
|
AddThirdPartyPrivateStaticDependencies(Target, "libcurl");
|
|
}
|
|
}
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Linux)
|
|
{
|
|
AddThirdPartyPrivateStaticDependencies(Target, "libcurl");
|
|
}
|
|
}
|
|
}
|