2022-08-10 16:03:37 +00:00
|
|
|
// 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;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
namespace UnrealBuildTool
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A module that is never compiled by us, and is only used to group include paths and libraries into a dependency unit.
|
|
|
|
|
/// </summary>
|
|
|
|
|
class UEBuildModuleExternal : UEBuildModule
|
|
|
|
|
{
|
2023-02-28 09:01:08 -05:00
|
|
|
public UEBuildModuleExternal(ModuleRules Rules, DirectoryReference IntermediateDirectory, DirectoryReference IntermediateDirectoryNoArch, ILogger Logger)
|
|
|
|
|
: base(Rules, IntermediateDirectory, IntermediateDirectoryNoArch, Logger)
|
2022-08-10 16:03:37 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|