Files
UnrealEngineUWP/Engine/Source/Developer/S3Client/S3Client.Build.cs

23 lines
504 B
C#
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class S3Client : ModuleRules
{
public S3Client(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(new string[] {
"Core",
"Sockets",
"SSL",
"libcurl",
"Json",
"XmlParser"
});
AddEngineThirdPartyPrivateStaticDependencies(Target, "libcurl");
AddEngineThirdPartyPrivateStaticDependencies(Target, "OpenSSL");
UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}