You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb wes.hunt #preflight 63be95bd68068a8bd6a4438e [CL 23651011 by mark lintott in ue5-main branch]
20 lines
576 B
C#
20 lines
576 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class Zen : ModuleRules
|
|
{
|
|
public Zen(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "Core", "Sockets", "SSL", "Json" });
|
|
PrivateIncludePathModuleNames.Add("DesktopPlatform");
|
|
PrivateIncludePathModuleNames.Add("Analytics");
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "libcurl");
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "OpenSSL");
|
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
}
|
|
}
|