Files
UnrealEngineUWP/Engine/Source/Editor/GameProjectGeneration/GameProjectGeneration.Build.cs
matt kuhlenschmidt 9e3deb7716 Project dialog reskin
#jira UETOOL-2465

#ROBOMERGE-SOURCE: CL 15366173 in //UE5/Release-5.0-EarlyAccess/...
#ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v771-15082668)

[CL 15368932 by matt kuhlenschmidt in ue5-main branch]
2021-02-09 15:02:56 -04:00

73 lines
1.3 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",
"DesktopPlatform",
"LauncherPlatform",
"MainFrame",
"AddContentDialog",
"HardwareTargeting",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Analytics",
"ApplicationCore",
"AppFramework",
"ClassViewer",
"Core",
"CoreUObject",
"Engine",
"EngineSettings",
"InputCore",
"Projects",
"RenderCore",
"Slate",
"SlateCore",
"EditorStyle",
"EditorWidgets",
"SourceControl",
"TargetPlatform",
"EditorFramework",
"EditorSubsystem",
"UnrealEd",
"DesktopPlatform",
"LauncherPlatform",
"HardwareTargeting",
"AddContentDialog",
"AudioMixer",
"AudioMixerCore"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetRegistry",
"ContentBrowser",
"Documentation",
"MainFrame",
}
);
if(Target.bWithLiveCoding)
{
PrivateIncludePathModuleNames.Add("LiveCoding");
}
}
}