Files
UnrealEngineUWP/Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControlProtocol/RemoteControlProtocol.Build.cs
Marc Audy 0cbbc781ca Merge UE5/Release-Engine-Staging @ 15740152 to UE5/Main
This represents UE4/Main @ 15709114

[CL 15740605 by Marc Audy in ue5-main branch]
2021-03-18 15:20:03 -04:00

23 lines
398 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class RemoteControlProtocol : ModuleRules
{
public RemoteControlProtocol(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"RemoteControl",
}
);
}
}