Files
UnrealEngine/Engine/Source/Runtime/Experimental/IoStore/HttpClient/IoStoreHttpClient.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

23 lines
588 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class IoStoreHttpClient : ModuleRules
{
public IoStoreHttpClient(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.Add("Core");
PublicDependencyModuleNames.Add("TraceLog");
PrivateDependencyModuleNames.Add("OpenSSL");
PrivateDefinitions.Add("IAS_HTTP_HAS_OPENSSL=1");
CppCompileWarningSettings.UnsafeTypeCastWarningLevel = WarningLevel.Error;
if (Target.Platform.IsInGroup(UnrealPlatformGroup.Windows))
{
PrivateDependencyModuleNames.Add("nghttp2");
}
}
}