Files
UnrealEngine/Engine/Plugins/VirtualProduction/Avalanche/Source/AvalancheRemoteControl/AvalancheRemoteControl.Build.cs
2025-05-18 13:04:45 +08:00

33 lines
789 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AvalancheRemoteControl : ModuleRules
{
public AvalancheRemoteControl(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"RemoteControl",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"RemoteControlComponents",
"RemoteControlLogic",
"Slate",
"SlateCore",
}
);
ShortName = "AvRC";
}
}