// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved. using UnrealBuildTool; public class WindowsServerTargetPlatform : ModuleRules { public WindowsServerTargetPlatform(ReadOnlyTargetRules Target) : base(Target) { PrivateDependencyModuleNames.AddRange( new string[] { "Core", "TargetPlatform", "DesktopPlatform", } ); if (Target.bCompileAgainstEngine) { PrivateDependencyModuleNames.AddRange( new string[] { "Engine", "RHI" } ); PrivateIncludePathModuleNames.Add("TextureCompressor"); } PrivateIncludePaths.AddRange( new string[] { "Developer/Windows/WindowsTargetPlatform/Private" } ); } }