Files
UnrealEngineUWP/Engine/Source/Programs/UnrealFrontend/UnrealFrontend.Build.cs
Robert Manuszewski 1a892433de CIS Fixes for UnrealFrontend linker errors + initialization order fix
[CL 2235668 by Robert Manuszewski in Main branch]
2014-07-29 06:34:45 -04:00

55 lines
1.1 KiB
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class UnrealFrontend : ModuleRules
{
public UnrealFrontend( TargetInfo Target )
{
PublicIncludePaths.Add("Runtime/Launch/Public");
PrivateIncludePaths.AddRange(
new string[] {
"Programs/UnrealFrontend/Private",
"Runtime/Launch/Private", // for LaunchEngineLoop.cpp include
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AutomationController",
"Core",
"CoreUObject",
"DeviceManager",
"LauncherServices",
"Messaging",
"ProfilerClient",
"Projects",
"SessionFrontend",
"SessionLauncher",
"SessionServices",
"Slate",
"SlateCore",
"SlateReflector",
"StandaloneRenderer",
"TargetDeviceServices",
"TargetPlatform",
}
);
// @todo: allow for better plug-in support in standalone Slate apps
PrivateDependencyModuleNames.AddRange(
new string[] {
"Networking",
"Sockets",
"UdpMessaging",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Messaging",
}
);
}
}