2021-04-08 14:32:07 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class RemoteControlProtocolDMX : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public RemoteControlProtocolDMX(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"DMXRuntime",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"DMXProtocol",
|
|
|
|
|
"RemoteControl",
|
|
|
|
|
"RemoteControlProtocol",
|
|
|
|
|
}
|
|
|
|
|
);
|
2021-05-27 13:40:37 -04:00
|
|
|
|
|
|
|
|
if (Target.bBuildEditor)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2022-08-27 01:20:15 -04:00
|
|
|
"InputCore",
|
|
|
|
|
"RemoteControlProtocolWidgets",
|
2021-05-27 13:40:37 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-04-08 14:32:07 -04:00
|
|
|
}
|
|
|
|
|
}
|