You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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;
|
||
|
|
}
|
||
|
|
}
|