2019-12-26 23:06:02 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
public class UnrealFileServerTarget : TargetRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public UnrealFileServerTarget(TargetInfo Target) : base(Target)
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
|
|
|
|
Type = TargetType.Program;
|
2016-12-13 11:58:16 -05:00
|
|
|
LinkType = TargetLinkType.Modular;
|
2017-01-30 16:52:08 -05:00
|
|
|
LaunchModuleName = "UnrealFileServer";
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
// Never use malloc profiling in Unreal Header Tool. We set this because often UHT is compiled right before the engine
|
|
|
|
|
// automatically by Unreal Build Tool, but if bUseMallocProfiler is defined, UHT can operate incorrectly.
|
2017-07-21 12:42:36 -04:00
|
|
|
bUseMallocProfiler = false;
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
// Editor-only data, however, is needed
|
2017-07-21 12:42:36 -04:00
|
|
|
bBuildWithEditorOnlyData = true;
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
// Currently this app is not linking against the engine, so we'll compile out references from Core to the rest of the engine
|
2017-07-21 12:42:36 -04:00
|
|
|
bCompileAgainstEngine = false;
|
|
|
|
|
bCompileAgainstCoreUObject = false;
|
|
|
|
|
bBuildDeveloperTools = false;
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
// UnrealHeaderTool is a console application, not a Windows app (sets entry point to main(), instead of WinMain())
|
2018-02-27 17:30:35 -05:00
|
|
|
bIsBuildingConsoleApplication = true;
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|