You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb jeremie.roy #jira UE-165587, UE-165588, UE-165591 #preflight 633737acf76de2d4d5c2d75d [CL 22284136 by simon therriault in ue5-main branch]
21 lines
423 B
C#
21 lines
423 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class LiveLinkMessageBusFramework : ModuleRules
|
|
{
|
|
public LiveLinkMessageBusFramework(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.Add("Messaging");
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"LiveLinkInterface",
|
|
"MessagingCommon"
|
|
}
|
|
);
|
|
}
|
|
}
|