You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Paul.Chipchase #preflight 645883dd4c3ec54e6ef626f0 [CL 25372954 by per larsson in ue5-main branch]
23 lines
504 B
C#
23 lines
504 B
C#
// 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;
|
|
}
|
|
}
|