You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
UE-9554 - Add BP/C++ Component's Show all classes list not expanded by default It now hides the Object root if UObject is not a valid base class type, as this allows the next level of classes to be expanded out which looks much better when adding new component classes. This involved a lot of shuffling of module dependencies so that we could link GameProjectGeneration to ClassViewer, as previously ClassViewer was directly linking to GameProjectGeneration. I went through and fixed everything that was linking to GameProjectGeneration to instead list it as a dynamic dependency (which it is, as nothing needs to link to it), and then verified that everything was using ClassViewer correctly (found some places that were only marking it as a dynamic dependency without also adding it as an include module, causing issues with missing API macro definitions as they were including ClassViewer headers via a relative include path). #codereview Andrew.Rodham [CL 2451499 by Jamie Dale in Main branch]
75 lines
1.8 KiB
C#
75 lines
1.8 KiB
C#
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class PropertyEditor : ModuleRules
|
|
{
|
|
public PropertyEditor(TargetInfo Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"UnrealEd",
|
|
"ActorPickerMode",
|
|
}
|
|
);
|
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"IntroTutorials"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"Editor/PropertyEditor/Private",
|
|
"Editor/PropertyEditor/Private/Presentation",
|
|
"Editor/PropertyEditor/Private/Presentation/PropertyTable",
|
|
"Editor/PropertyEditor/Private/Presentation/PropertyEditor",
|
|
"Editor/PropertyEditor/Private/Presentation/PropertyDetails",
|
|
"Editor/PropertyEditor/Private/UserInterface",
|
|
"Editor/PropertyEditor/Private/UserInterface/PropertyTable",
|
|
"Editor/PropertyEditor/Private/UserInterface/PropertyEditor",
|
|
"Editor/PropertyEditor/Private/UserInterface/PropertyTree",
|
|
"Editor/PropertyEditor/Private/UserInterface/PropertyDetails",
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"MainFrame",
|
|
"AssetRegistry",
|
|
"AssetTools",
|
|
"ClassViewer",
|
|
"ContentBrowser"
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"AppFramework",
|
|
"Core",
|
|
"CoreUObject",
|
|
"EditorStyle",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorWidgets",
|
|
"Documentation",
|
|
"RHI",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"AssetRegistry",
|
|
"AssetTools",
|
|
"ClassViewer",
|
|
"ContentBrowser",
|
|
"Documentation",
|
|
"MainFrame",
|
|
}
|
|
);
|
|
}
|
|
}
|