2021-10-27 15:14:40 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
public class Zen : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public Zen(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2022-11-02 15:43:23 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "Core", "Sockets", "SSL", "Json", "Analytics" });
|
2021-10-27 15:14:40 -04:00
|
|
|
PrivateIncludePathModuleNames.Add("DesktopPlatform");
|
2022-11-02 06:56:10 -04:00
|
|
|
|
2021-10-27 15:14:40 -04:00
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "libcurl");
|
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "OpenSSL");
|
2022-08-30 02:22:04 -04:00
|
|
|
|
|
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
2021-10-27 15:14:40 -04:00
|
|
|
}
|
|
|
|
|
}
|