Files
UnrealEngine/Engine/Plugins/Editor/CryptoKeys/Source/CryptoKeysOpenSSL/CryptoKeysOpenSSL.Build.cs
2025-05-18 13:04:45 +08:00

27 lines
489 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class CryptoKeysOpenSSL : ModuleRules
{
public CryptoKeysOpenSSL(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.Add("CryptoKeys");
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"OpenSSL"
}
);
AddEngineThirdPartyPrivateStaticDependencies(Target, "OpenSSL");
}
}