Files
UnrealEngineUWP/Engine/Source/Programs/UnrealFrontend/UnrealFrontend.Build.cs
Dmitry Rekman 7962cac622 Linux: moved common startup code to a separate module.
- The code that handles initial setup (command line processing, rlimits and debugger) is now shared between engine, UFE and SlateViewer.

[CL 2679796 by Dmitry Rekman in Main branch]
2015-09-03 20:46:02 -04:00

86 lines
1.8 KiB
C#

// Copyright 1998-2015 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",
"Programs/UnrealFrontend/Private/Commands",
"Runtime/Launch/Private", // for LaunchEngineLoop.cpp include
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AutomationController",
"Core",
"CoreUObject",
"DeviceManager",
"LauncherServices",
"Messaging",
"Profiler",
"ProfilerClient",
"ProjectLauncher",
"Projects",
"SessionFrontend",
"SessionServices",
"Slate",
"SlateCore",
"SourceCodeAccess",
"StandaloneRenderer",
"TargetDeviceServices",
"TargetPlatform",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"SlateReflector",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"SlateReflector",
}
);
if (Target.Platform == UnrealTargetPlatform.Mac)
{
PrivateDependencyModuleNames.Add("XCodeSourceCodeAccess");
}
else if (Target.Platform == UnrealTargetPlatform.Win64)
{
PrivateDependencyModuleNames.Add("VisualStudioSourceCodeAccess");
}
else if (Target.Platform == UnrealTargetPlatform.Linux)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"LinuxCommonStartup"
}
);
}
// @todo: allow for better plug-in support in standalone Slate apps
PrivateDependencyModuleNames.AddRange(
new string[] {
"Networking",
"Sockets",
"UdpMessaging",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Messaging",
}
);
}
}