2019-12-26 15:33:43 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-09-17 19:12:19 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2020-01-22 17:58:55 -05:00
|
|
|
public class RigVMDeveloper : ModuleRules
|
2019-09-17 19:12:19 -04:00
|
|
|
{
|
2020-01-22 17:58:55 -05:00
|
|
|
public RigVMDeveloper(ReadOnlyTargetRules Target) : base(Target)
|
2019-09-17 19:12:19 -04:00
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"RigVM",
|
2021-10-06 11:19:48 -04:00
|
|
|
"VisualGraphUtils",
|
2019-09-17 19:12:19 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (Target.bBuildEditor == true)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
2020-08-14 13:24:16 -04:00
|
|
|
"EditorFramework",
|
2019-09-17 19:12:19 -04:00
|
|
|
"UnrealEd",
|
2020-12-04 05:36:01 -04:00
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2022-05-09 13:12:28 -04:00
|
|
|
|
2021-07-19 06:35:29 -04:00
|
|
|
"MessageLog",
|
2021-11-18 08:00:07 -05:00
|
|
|
"BlueprintGraph"
|
2020-12-04 05:36:01 -04:00
|
|
|
}
|
|
|
|
|
);
|
2019-09-17 19:12:19 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|