You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Runtime part is ready for review #rb simon.therriault #jira UE-146247 #preflight 62728aa8ec1566a70616aeb1 [CL 20041750 by Denys Dubinin in ue5-main branch]
36 lines
585 B
C#
36 lines
585 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class RemoteControlLogic : ModuleRules
|
|
{
|
|
public RemoteControlLogic(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Cbor",
|
|
"Engine",
|
|
"RemoteControl",
|
|
"Serialization",
|
|
"StructUtils"
|
|
}
|
|
);
|
|
|
|
if (Target.bBuildEditor)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"UnrealEd",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|