Files
UnrealEngineUWP/Engine/Source/Editor/IntroTutorials/IntroTutorials.Build.cs
Chris Gagnon 8fc25ea18e Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
#rb none

[CL 4676797 by Chris Gagnon in Dev-Editor branch]
2019-01-02 14:54:39 -05:00

67 lines
1.4 KiB
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class IntroTutorials : ModuleRules
{
public IntroTutorials(ReadOnlyTargetRules Target) : base(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[] {
"AppFramework",
"UnrealEd",
"Kismet",
"PlacementMode",
"SlateCore",
"Settings",
"PropertyEditor",
"DesktopPlatform",
"AssetTools",
"SourceCodeAccess",
"ContentBrowser",
"LevelEditor",
"AssetRegistry",
"Analytics",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"MainFrame",
"TargetPlatform",
"TargetDeviceServices",
"LauncherServices",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"LauncherServices",
}
);
}
}
}