You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-118572 #rb Josh.Adams, Nuno.Leiria #rnx [CL 16754815 by David Harvey in ue5-main branch]
35 lines
596 B
C#
35 lines
596 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class TurnkeyIO : ModuleRules
|
|
{
|
|
public TurnkeyIO(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
}
|
|
);
|
|
|
|
if (Target.bBuildDeveloperTools)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"CoreUObject",
|
|
"Sockets",
|
|
"Slate",
|
|
"SlateCore",
|
|
"Json",
|
|
}
|
|
);
|
|
|
|
PublicDefinitions.Add("WITH_TURNKEY_EDITOR_IO_SERVER=1");
|
|
}
|
|
else
|
|
{
|
|
PublicDefinitions.Add("WITH_TURNKEY_EDITOR_IO_SERVER=0");
|
|
}
|
|
}
|
|
}
|