Files
UnrealEngineUWP/Engine/Plugins/Developer/Concert/MultiUserClient/Source/MultiUserClientLibrary/MultiUserClientLibrary.Build.cs
Patrick Boutot b67ff68e04 Copying //UE4/Dev-VirtualProduction to //UE4/Dev-Tools-Staging @ 11168401
#rb none
#rnx

[CL 11170710 by Patrick Boutot in Dev-Tools-Staging branch]
2020-01-29 18:45:15 -05:00

52 lines
1018 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class MultiUserClientLibrary : ModuleRules
{
public MultiUserClientLibrary(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
}
);
if (Target.Type == TargetType.Editor || Target.Type == TargetType.Program)
{
PrivateDefinitions.Add("WITH_CONCERT=1");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Concert"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"ConcertSyncCore",
"ConcertSyncClient",
"MultiUserClient",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
"MultiUserClient",
}
);
}
else
{
PrivateDefinitions.Add("WITH_CONCERT=0");
}
}
}
}