2019-12-27 09:26:59 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-01-08 11:38:48 -05:00
|
|
|
|
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
|
|
|
{
|
|
|
|
|
public class ControlRigDeveloper : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public ControlRigDeveloper(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2019-05-21 19:25:23 -04:00
|
|
|
PrivateIncludePaths.Add("ControlRig/Private");
|
2022-09-10 00:03:16 -04:00
|
|
|
PrivateIncludePaths.Add("ControlRigEditor/Private");
|
2019-01-08 11:38:48 -05:00
|
|
|
|
2022-09-10 00:03:16 -04:00
|
|
|
// Copying some these from ControlRig.build.cs, our deps are likely leaner
|
|
|
|
|
// and therefore these could be pruned if needed:
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2019-01-08 11:38:48 -05:00
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"AnimGraphRuntime",
|
|
|
|
|
"ControlRig",
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"KismetCompiler",
|
|
|
|
|
"MovieScene",
|
|
|
|
|
"MovieSceneTracks",
|
|
|
|
|
"PropertyPath",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2019-05-21 19:25:23 -04:00
|
|
|
"InputCore",
|
|
|
|
|
"TimeManagement",
|
2020-01-22 17:58:55 -05:00
|
|
|
"EditorWidgets",
|
2019-05-21 19:25:23 -04:00
|
|
|
"MessageLog",
|
2020-01-22 17:58:55 -05:00
|
|
|
"RigVM",
|
2021-10-27 15:14:40 -04:00
|
|
|
"ToolWidgets",
|
2019-05-21 19:25:23 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"AnimationCore",
|
2021-10-06 11:19:48 -04:00
|
|
|
"VisualGraphUtils",
|
2019-01-08 11:38:48 -05:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (Target.bBuildEditor == true)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
2020-08-14 13:24:16 -04:00
|
|
|
"EditorFramework",
|
2019-01-08 11:38:48 -05:00
|
|
|
"UnrealEd",
|
2019-04-02 11:26:55 -04:00
|
|
|
"Kismet",
|
2019-04-24 18:34:05 -04:00
|
|
|
"AnimGraph",
|
2019-01-08 11:38:48 -05:00
|
|
|
"BlueprintGraph",
|
|
|
|
|
"PropertyEditor",
|
2020-01-22 17:58:55 -05:00
|
|
|
"RigVMDeveloper",
|
2021-01-14 15:00:40 -04:00
|
|
|
"GraphEditor",
|
2021-10-12 21:21:22 -04:00
|
|
|
"ApplicationCore",
|
2023-06-28 10:46:14 -04:00
|
|
|
"RigVMEditor",
|
2021-01-14 15:00:40 -04:00
|
|
|
}
|
2019-01-08 11:38:48 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePathModuleNames.Add("ControlRigEditor");
|
|
|
|
|
DynamicallyLoadedModuleNames.Add("ControlRigEditor");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|