You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb trivial #preflight 63ebfa805c7bd278c1af3337 [CL 24221225 by Joe Kirchoff in ue5-main branch]
38 lines
674 B
C#
38 lines
674 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class ConcertClient : ModuleRules
|
|
{
|
|
public ConcertClient(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject", // FH: Can we do without at some point?
|
|
"ConcertTransport",
|
|
"Serialization",
|
|
"Concert"
|
|
}
|
|
);
|
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"ConcertTransport",
|
|
"Concert",
|
|
"GameplayTags",
|
|
}
|
|
);
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"GameplayTags",
|
|
"Engine"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|