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