// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved. using UnrealBuildTool; public class FunctionalTesting : ModuleRules { public FunctionalTesting(ReadOnlyTargetRules Target) : base(Target) { PrivateDependencyModuleNames.AddRange( new string[] { "Core", "CoreUObject", "Engine", "ShaderCore", "Slate", "MessageLog", "NavigationSystem", "AIModule", "RenderCore", "AssetRegistry", "RHI", "UMG", "AutomationController", } ); if (Target.bBuildEditor == true) { PrivateDependencyModuleNames.Add("UnrealEd"); } PrivateIncludePaths.AddRange( new string[] { "Developer/FunctionalTesting/Private", } ); if (Target.bBuildEditor == true) { PrivateDependencyModuleNames.AddRange( new string[] { "SourceControl" } ); } } }