Files
UnrealEngineUWP/Engine/Source/Editor/Documentation/Documentation.Build.cs
brooke hubert 48113fc77e Adding EditorFramework to build.cs files
#rnx
#Jira UE-96448
#rb chris.gagnon

[CL 14114839 by brooke hubert in ue5-main branch]
2020-08-14 13:24:16 -04:00

60 lines
1.3 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class Documentation : ModuleRules
{
public Documentation(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.AddRange(
new string[] {
// ... add public include paths required here ...
}
);
PrivateIncludePaths.AddRange(
new string[] {
// ... add other private include paths required here ...
}
);
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
// ... add private dependencies that you statically link with here ...
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"EditorFramework",
"UnrealEd",
"Analytics",
"SourceCodeAccess",
"SourceControl",
"ContentBrowser",
"DesktopPlatform"
}
);
CircularlyReferencedDependentModules.Add("SourceControl");
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
"MessageLog"
}
);
}
}
}