Files
UnrealEngineUWP/Engine/Source/ThirdParty/LibreSSL/LibreSSL.Build.cs
Yuriy ODonnell 7480a25018 Add package *.Build.cs files for cli11, fmt, http-parser, libressl and zstd that we distribute via our vcpkg installation
- This allows other UBT packages to easily depend on these libraries
- Change Unsync.Build.cs to use these libraries via PrivateDependencyModuleNames instead of adhoc AddVcPackage

#preflight 620bad8c01253d2e19dc0a7b
#rb Joe.Kirchoff

[CL 18997035 by Yuriy ODonnell in ue5-main branch]
2022-02-15 11:23:15 -05:00

19 lines
338 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LibreSSL : ModuleRules
{
public LibreSSL(ReadOnlyTargetRules Target) : base(Target)
{
Type = ModuleType.External;
if (!IsVcPackageSupported)
{
return;
}
AddVcPackage("libressl", true, new string [] { "crypto", "ssl", "tls" });
}
}