Files
UnrealEngineUWP/Engine/Source/Editor/GameProjectGeneration/GameProjectGeneration.Build.cs
christopher waters a132db72f0 Cleaning up various include paths including removing redundant or unnecessary Public and Private paths.
[CL 24372000 by christopher waters in ue5-main branch]
2023-02-22 18:01:53 -05: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",
"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");
}
}
}