Files
UnrealEngineUWP/Engine/Source/Editor/IntroTutorials/IntroTutorials.Build.cs
Thomas Sarkanen a27980dcf0 Tutorials 2.0 - Initial version
NOTE: Old tutorials not deprecated (yet), but widget highlights in old tutorials will stop working with this change!

Added new Blueprintable UEditorTutorial object.
Added suite of widgets and details customizations to display tutorials.
New system is available on command line switch -NewTutorials.

Slate changes:
Tag names are now stored in SWidgets, rather than simply being discarded.
Removed STutorialWrapper in favour of using Tags.
Added Tags to more multibox widgets, so virtually all can now be picked.
Added SWindow::HasOverlay so we dont attempt to add overlays to widows that cannot have them.

[CL 2244216 by Thomas Sarkanen in Main branch]
2014-08-05 09:04:35 -04:00

59 lines
1.2 KiB
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class IntroTutorials : ModuleRules
{
public IntroTutorials(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine", // @todo Mac: for some reason CoreUObject and Engine are needed to link in debug on Mac
"InputCore",
"Slate",
"EditorStyle",
"Documentation",
"GraphEditor",
"BlueprintGraph",
"MessageLog"
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Editor/IntroTutorials/Private",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"UnrealEd",
"Kismet",
"PlacementMode",
"SlateCore",
"Settings",
"PropertyEditor"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"MainFrame",
"TargetPlatform",
"TargetDeviceServices",
"LauncherServices",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"Documentation",
"MainFrame",
"LauncherServices",
}
);
}
}
}