You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #ROBOMERGE-OWNER: ben.marsh #ROBOMERGE-AUTHOR: stefan.boberg #ROBOMERGE-SOURCE: CL 6815521 in //UE4/Main/... #ROBOMERGE-BOT: BUILD (Main -> Dev-Build) (v365-6733468) [CL 6821265 by stefan boberg in Dev-Build branch]
23 lines
605 B
C#
23 lines
605 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class RSA : ModuleRules
|
|
{
|
|
public RSA(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.Add("Core");
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64 || Target.Platform == UnrealTargetPlatform.Win32 ||
|
|
Target.Platform == UnrealTargetPlatform.Mac || Target.Platform == UnrealTargetPlatform.Linux)
|
|
{
|
|
PrivateDependencyModuleNames.Add("OpenSSL");
|
|
PrivateDefinitions.Add("RSA_USE_OPENSSL=1");
|
|
}
|
|
else
|
|
{
|
|
PrivateDefinitions.Add("RSA_USE_OPENSSL=0");
|
|
}
|
|
}
|
|
}
|