Files
UnrealEngineUWP/Engine/Source/Developer/ProjectLauncher/ProjectLauncher.Build.cs
PJ Kack da938d06e7 QuickLaunch: When quick launch fails to start the launcher due to an invalid profile, then log all launcher profile validation errors to make it possible to diagnose the issue.
#jira none
#rb carlmagnus.nordin
#rnx
#preflight 6380b6bfcc307d6fa5976b8a

[CL 23265415 by PJ Kack in ue5-main branch]
2022-11-25 07:55:33 -05:00

44 lines
786 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ProjectLauncher : ModuleRules
{
public ProjectLauncher(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"LauncherServices",
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"TargetPlatform",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"DesktopPlatform",
"ApplicationCore",
"InputCore",
"Slate",
"SlateCore",
"WorkspaceMenuStructure",
"ToolWidgets",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"SessionServices",
"TargetDeviceServices",
}
);
}
}