You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Removed redundant private include paths from build.cs files. Fixed include paths to be relative to the private or public folders. Hid or removed includes that reached into other private module folders. Updated PublicInclude paths when necessary. #jira #preflight 631b93c6967ffc68fb2c32df [CL 21935609 by bryan sefcik in ue5-main branch]
101 lines
3.2 KiB
C#
101 lines
3.2 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[] {
|
|
System.IO.Path.Combine(EngineDirectory,"Plugins/Animation/ControlRig/Source/ControlRig/Private"),
|
|
System.IO.Path.Combine(EngineDirectory,"Source/Developer/AssetTools/Private"),
|
|
System.IO.Path.Combine(EngineDirectory,"Source/Developer/MessageLog/Private"), //compatibility for FBX importer
|
|
System.IO.Path.Combine(EngineDirectory,"Source/Editor/Kismet/Private"),
|
|
System.IO.Path.Combine(EngineDirectory,"Source/Editor/Persona/Private"),
|
|
System.IO.Path.Combine(EngineDirectory,"Source/Editor/PropertyEditor/Private"),
|
|
System.IO.Path.Combine(EngineDirectory,"Source/Editor/SceneOutliner/Private"),
|
|
System.IO.Path.Combine(EngineDirectory,"Source/Editor/UnrealEd/Private"),
|
|
System.IO.Path.Combine(EngineDirectory,"Source/Runtime/Slate/Private"),
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"MainFrame",
|
|
"AppFramework",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"CurveEditor",
|
|
"Slate",
|
|
"SlateCore",
|
|
"InputCore",
|
|
"Engine",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"KismetCompiler",
|
|
"BlueprintGraph",
|
|
"ControlRig",
|
|
"ControlRigDeveloper",
|
|
"Kismet",
|
|
"KismetCompiler",
|
|
"EditorStyle",
|
|
"EditorWidgets",
|
|
"ApplicationCore",
|
|
"AnimationCore",
|
|
"PropertyEditor",
|
|
"AnimGraph",
|
|
"AnimGraphRuntime",
|
|
"MovieScene",
|
|
"MovieSceneTracks",
|
|
"MovieSceneTools",
|
|
"SequencerCore",
|
|
"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",
|
|
"AnimationWidgets",
|
|
"ActorPickerMode",
|
|
"Constraints",
|
|
"AnimationEditMode"
|
|
}
|
|
);
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "FBX");
|
|
}
|
|
}
|
|
}
|