You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#pf https://horde.devtools.epicgames.com/job/612d40b9423a8f00013c5b92 #ROBOMERGE-AUTHOR: matt.kuhlenschmidt #ROBOMERGE-SOURCE: CL 17457077 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v870-17433530) [CL 17457092 by matt kuhlenschmidt in ue5-release-engine-test branch]
74 lines
1.3 KiB
C#
74 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",
|
|
"ToolWidgets",
|
|
"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");
|
|
}
|
|
}
|
|
}
|