// Copyright Epic Games, Inc. All Rights Reserved. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using EpicGames.Core; namespace UnrealBuildTool { /// /// A module that is never compiled by us, and is only used to group include paths and libraries into a dependency unit. /// class UEBuildModuleExternal : UEBuildModule { public UEBuildModuleExternal(ModuleRules Rules, DirectoryReference IntermediateDirectory) : base(Rules, IntermediateDirectory) { } } }