2019-12-27 07:44:07 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-06-20 13:05:10 -04:00
|
|
|
|
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
|
|
|
{
|
|
|
|
|
public class LiveLinkGraphNode : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public LiveLinkGraphNode(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"AnimationCore",
|
|
|
|
|
"AnimGraphRuntime",
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"KismetCompiler",
|
|
|
|
|
"LiveLink",
|
|
|
|
|
"LiveLinkInterface",
|
|
|
|
|
"Persona",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (Target.bBuildEditor == true)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
2020-08-14 13:24:16 -04:00
|
|
|
"EditorFramework",
|
2019-06-20 13:05:10 -04:00
|
|
|
"UnrealEd",
|
|
|
|
|
"Kismet",
|
|
|
|
|
"AnimGraph",
|
|
|
|
|
"BlueprintGraph",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|