Files
UnrealEngineUWP/Engine/Source/Programs/LiveCodingConsole/LiveCodingConsole.Target.cs
Jack Porter 9d2ebe90d2 Merging //UE4/Dev-Main to Dev-Mobile (//UE4/Dev-Mobile)
#rb None
#jira 0

[CL 5396125 by Jack Porter in Dev-Mobile branch]
2019-03-14 00:59:16 -04:00

34 lines
1.0 KiB
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class LiveCodingConsoleTarget : TargetRules
{
public LiveCodingConsoleTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
LaunchModuleName = "LiveCodingConsole";
bBuildDeveloperTools = false;
bUseMallocProfiler = false;
bCompileWithPluginSupport = true;
bIncludePluginsForTargetPlatforms = true;
// Editor-only data, however, is needed
bBuildWithEditorOnlyData = true;
// Currently this app is not linking against the engine, so we'll compile out references from Core to the rest of the engine
bCompileAgainstApplicationCore = true;
bCompileAgainstCoreUObject = true;
bCompileAgainstEngine = false;
// ICU is not needed
bCompileICU = false;
// UnrealHeaderTool is a console application, not a Windows app (sets entry point to main(), instead of WinMain())
bIsBuildingConsoleApplication = false;
}
}