Files
UnrealEngineUWP/Engine/Source/Programs/LiveCodingConsole/LiveCodingConsole.Target.cs
T

33 lines
972 B
C#
Raw Normal View History

2019-12-26 23:01:54 -05:00
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms("Win64")]
public class LiveCodingConsoleTarget : TargetRules
{
public LiveCodingConsoleTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
LaunchModuleName = "LiveCodingConsole";
bBuildDeveloperTools = false;
bCompileWithPluginSupport = true;
bIncludePluginsForTargetPlatforms = true;
2019-07-16 08:46:19 -04:00
bWithLiveCoding = 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 needed for regex during click to source code
bCompileICU = true;
}
}