2021-04-29 19:32:06 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
/** Shared functionality between RemoteControlUI and RemoteControlProtocolWidgets */
|
|
|
|
|
public class RemoteControlCommon : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public RemoteControlCommon(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
2021-06-10 13:13:24 -04:00
|
|
|
new string[] {
|
|
|
|
|
}
|
2021-04-29 19:32:06 -04:00
|
|
|
);
|
|
|
|
|
|
2021-05-27 13:40:37 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2021-04-29 19:32:06 -04:00
|
|
|
new string[] {
|
|
|
|
|
"ApplicationCore",
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
2021-06-10 13:13:24 -04:00
|
|
|
"InputCore"
|
2021-04-29 19:32:06 -04:00
|
|
|
}
|
|
|
|
|
);
|
2021-05-27 13:40:37 -04:00
|
|
|
|
|
|
|
|
if (Target.bBuildEditor)
|
|
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"AssetRegistry",
|
|
|
|
|
"AssetTools",
|
|
|
|
|
"BlueprintGraph",
|
|
|
|
|
"DeveloperSettings",
|
|
|
|
|
"EditorWidgets",
|
2022-05-09 13:12:28 -04:00
|
|
|
|
2021-05-27 13:40:37 -04:00
|
|
|
"EditorSubsystem",
|
|
|
|
|
"Projects",
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-04-29 19:32:06 -04:00
|
|
|
}
|
|
|
|
|
}
|