2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-09-09 12:20:43 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class ProjectLauncher : ModuleRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public ProjectLauncher(ReadOnlyTargetRules Target) : base(Target)
|
2014-09-09 12:20:43 -04:00
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
2022-11-25 07:55:33 -05:00
|
|
|
"LauncherServices",
|
2014-09-09 12:20:43 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2022-01-28 10:06:34 -05:00
|
|
|
"TargetPlatform",
|
2014-09-09 12:20:43 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"DesktopPlatform",
|
2017-08-31 12:08:38 -04:00
|
|
|
"ApplicationCore",
|
2014-09-09 12:20:43 -04:00
|
|
|
"InputCore",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2022-05-09 13:12:28 -04:00
|
|
|
|
2014-10-09 12:34:55 -04:00
|
|
|
"WorkspaceMenuStructure",
|
2021-10-27 15:14:40 -04:00
|
|
|
"ToolWidgets",
|
2014-09-09 12:20:43 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"TargetDeviceServices",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|