You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @17911760, Release-5.0 @17915875 and Dev-PerfTest @17914035 [CL 17918595 by aurel cordonnier in ue5-release-engine-test branch]
94 lines
2.7 KiB
C#
94 lines
2.7 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class ControlRigEditor : ModuleRules
|
|
{
|
|
public ControlRigEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"ControlRigEditor/Private",
|
|
"ControlRigEditor/Private/Sequencer",
|
|
"ControlRigEditor/Private/EditMode",
|
|
"ControlRigEditor/Private/Graph",
|
|
"ControlRigEditor/Private/Editor",
|
|
"../../../../Source/Editor/UnrealEd/Private",
|
|
"../../../../Source/Developer/MessageLog/Private", //compatibility for FBX importer
|
|
"ControlRigEditor/Private/Tools"
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"MainFrame",
|
|
"AppFramework",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"CurveEditor",
|
|
"Slate",
|
|
"SlateCore",
|
|
"InputCore",
|
|
"Engine",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"KismetCompiler",
|
|
"BlueprintGraph",
|
|
"ControlRig",
|
|
"ControlRigDeveloper",
|
|
"Kismet",
|
|
"EditorStyle",
|
|
"EditorWidgets",
|
|
"ApplicationCore",
|
|
"AnimationCore",
|
|
"PropertyEditor",
|
|
"AnimGraph",
|
|
"AnimGraphRuntime",
|
|
"MovieScene",
|
|
"MovieSceneTracks",
|
|
"MovieSceneTools",
|
|
"Sequencer",
|
|
"LevelSequenceEditor",
|
|
"ClassViewer",
|
|
"AssetTools",
|
|
"ContentBrowser",
|
|
"ContentBrowserData",
|
|
"LevelEditor",
|
|
"SceneOutliner",
|
|
"EditorInteractiveToolsFramework",
|
|
"LevelSequence",
|
|
"GraphEditor",
|
|
"PropertyPath",
|
|
"Persona",
|
|
"UMG",
|
|
"TimeManagement",
|
|
"PropertyPath",
|
|
"WorkspaceMenuStructure",
|
|
"Json",
|
|
"DesktopPlatform",
|
|
"ToolMenus",
|
|
"RigVM",
|
|
"RigVMDeveloper",
|
|
"AnimationEditor",
|
|
"MessageLog",
|
|
"SequencerScripting",
|
|
"PropertyAccessEditor",
|
|
"KismetWidgets",
|
|
"PythonScriptPlugin",
|
|
"AdvancedPreviewScene",
|
|
"ToolWidgets",
|
|
}
|
|
);
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "FBX");
|
|
}
|
|
}
|
|
}
|