Files
UnrealEngineUWP/Engine/Source/Developer/Linux/LinuxServerTargetPlatform/LinuxServerTargetPlatform.Build.cs
Dmitry Rekman 9781796a59 Rocket: disable packaging for projects that need libs which aren't bundled (UE-7114).
- Rocket doesn't bundle Linux libs, making code-based projects (and projects with third-party plugins) fail during compilation.
- Updated messaging to reflect this.
- Also added a SDK check for Linux and a 'getting' started UDN page.
- Updated Linux README for 4.8.

#codereview Peter.Sauerbrei, Ben.Marsh, Jeff.Wilson

[CL 2543338 by Dmitry Rekman in Main branch]
2015-05-08 14:31:12 -04:00

37 lines
791 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LinuxServerTargetPlatform : ModuleRules
{
public LinuxServerTargetPlatform(TargetInfo Target)
{
BinariesSubFolder = "Linux";
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"TargetPlatform",
"DesktopPlatform",
"Projects"
}
);
if (UEBuildConfiguration.bCompileAgainstEngine)
{
PrivateDependencyModuleNames.AddRange(new string[] {
"Engine"
}
);
PrivateIncludePathModuleNames.Add("TextureCompressor");
}
PrivateIncludePaths.AddRange(
new string[] {
"Developer/Linux/LinuxTargetPlatform/Private"
}
);
}
}