2022-07-06 16:02:58 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class OutputLog : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public OutputLog(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject", // @todo Mac: for some reason it's needed to link in debug on Mac
|
2024-01-26 18:12:39 -05:00
|
|
|
"EngineSettings",
|
2024-01-17 18:48:52 -05:00
|
|
|
"InputCore",
|
2022-07-06 16:02:58 -04:00
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2022-09-11 23:22:42 -04:00
|
|
|
"TargetPlatform",
|
|
|
|
|
"DesktopPlatform",
|
2024-01-17 18:48:52 -05:00
|
|
|
"ToolWidgets",
|
|
|
|
|
"ToolMenus",
|
2022-07-06 16:02:58 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (Target.bBuildEditor)
|
2022-09-11 23:22:42 -04:00
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2022-07-06 16:02:58 -04:00
|
|
|
new string[] {
|
2022-07-11 12:04:12 -04:00
|
|
|
"EditorFramework",
|
|
|
|
|
"StatusBar",
|
2022-09-11 18:32:18 -04:00
|
|
|
"UnrealEd",
|
|
|
|
|
}
|
|
|
|
|
);
|
2022-09-11 23:22:42 -04:00
|
|
|
}
|
2022-09-11 18:32:18 -04:00
|
|
|
|
2022-09-11 23:22:42 -04:00
|
|
|
if (Target.bBuildEditor || Target.bBuildDeveloperTools)
|
|
|
|
|
{
|
2022-09-11 18:32:18 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"WorkspaceMenuStructure",
|
2022-07-06 16:02:58 -04:00
|
|
|
}
|
|
|
|
|
);
|
2022-07-11 12:04:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Target.bCompileAgainstEngine)
|
|
|
|
|
{
|
|
|
|
|
// Required for output log drawer in editor / engine builds.
|
|
|
|
|
PrivateDependencyModuleNames.Add("Engine");
|
|
|
|
|
}
|
2023-08-02 14:14:55 -04:00
|
|
|
|
|
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
2022-07-11 12:04:12 -04:00
|
|
|
}
|
2022-07-06 16:02:58 -04:00
|
|
|
}
|