// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved. using UnrealBuildTool; public class BlankProgram : ModuleRules { public BlankProgram(TargetInfo Target) { PublicIncludePaths.Add("Runtime/Launch/Public"); PrivateIncludePaths.Add("Runtime/Launch/Private"); // For LaunchEngineLoop.cpp include PrivateDependencyModuleNames.Add("Core"); PrivateDependencyModuleNames.Add("Projects"); } }