Files
UnrealEngineUWP/Engine/Source/Editor/TurnkeySupport/TurnkeySupport.Build.cs
bryan sefcik d205101cc8 Removed unnecessary private include modules.
#preflight 645da640cf788a25581110bb

[CL 25451545 by bryan sefcik in ue5-main branch]
2023-05-12 12:13:52 -04:00

62 lines
1.1 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TurnkeySupport : ModuleRules
{
public TurnkeySupport(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"ApplicationCore",
"DeveloperToolSettings",
"EngineSettings",
"InputCore",
"RHI",
"RenderCore",
"Slate",
"SlateCore",
"TargetPlatform",
"DesktopPlatform",
"WorkspaceMenuStructure",
"MessageLog",
"Projects",
"ToolMenus",
"LauncherServices",
"SourceControl",
"TurnkeyIO",
"Analytics",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"DerivedDataCache",
}
);
if (Target.bCompileAgainstEditor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"UnrealEd",
"UATHelper",
"SettingsEditor",
"Zen",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"GameProjectGeneration",
"ProjectTargetPlatformEditor",
"LevelEditor",
"Settings",
"MainFrame",
}
);
}
}
}