You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb dominik.peacock #jira UE-168182 #preflight 63c6cf3c02024f93d8635de3 [CL 23739781 by jason walter in ue5-main branch]
54 lines
967 B
C#
54 lines
967 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",
|
|
"ConcertClient",
|
|
"ConcertSyncCore"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"ConcertSyncCore",
|
|
"ConcertSyncClient",
|
|
"MultiUserClient",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"MultiUserClient",
|
|
}
|
|
);
|
|
}
|
|
else
|
|
{
|
|
PrivateDefinitions.Add("WITH_CONCERT=0");
|
|
}
|
|
}
|
|
}
|
|
}
|