You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- 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]
19 lines
338 B
C#
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" });
|
|
}
|
|
}
|