You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
23 lines
565 B
C#
23 lines
565 B
C#
// 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
|
|
{
|
|
/// <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
|
|
{
|
|
public UEBuildModuleExternal(ModuleRules Rules, DirectoryReference IntermediateDirectory)
|
|
: base(Rules, IntermediateDirectory)
|
|
{
|
|
}
|
|
}
|
|
}
|