Files
UnrealEngineUWP/Engine/Source/Editor/GameProjectGeneration/GameProjectGeneration.Build.cs
bryan sefcik 91c57d395e Removed redundant module includes.
#preflight 645d4bf3aa3c584c0b5b3a67

[CL 25435653 by bryan sefcik in ue5-main branch]
2023-05-11 16:48:21 -04:00

68 lines
1.2 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class GameProjectGeneration : ModuleRules
{
public GameProjectGeneration(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"HardwareTargeting",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetRegistry",
"ContentBrowser",
"MainFrame",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Analytics",
"ApplicationCore",
"AppFramework",
"ClassViewer",
"Core",
"CoreUObject",
"Engine",
"EngineSettings",
"InputCore",
"Projects",
"RenderCore",
"Slate",
"SlateCore",
"EditorWidgets",
"ToolWidgets",
"SourceControl",
"TargetPlatform",
"EditorFramework",
"EditorSubsystem",
"UnrealEd",
"DesktopPlatform",
"LauncherPlatform",
"AddContentDialog",
"AudioMixer",
"AudioMixerCore"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetRegistry",
"ContentBrowser",
"Documentation",
"MainFrame",
}
);
if(Target.bWithLiveCoding)
{
PrivateIncludePathModuleNames.Add("LiveCoding");
}
}
}