You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
preflight https://horde.devtools.epicgames.com/job/6182954f300d520001e9e1fb?step=1df5 #jira UE-131480 #rb will.damon [CL 18049627 by Andriy Tylychko in ue5-main branch]
30 lines
873 B
C#
30 lines
873 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
[SupportedPlatforms("Mac")]
|
|
public class UnrealEditorServicesTarget : TargetRules
|
|
{
|
|
public UnrealEditorServicesTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Program;
|
|
LinkType = TargetLinkType.Monolithic;
|
|
LaunchModuleName = "UnrealEditorServices";
|
|
|
|
bBuildDeveloperTools = false;
|
|
bUseMallocProfiler = false;
|
|
|
|
bCompileICU = false;
|
|
// Editor-only data, however, is needed
|
|
bBuildWithEditorOnlyData = false;
|
|
|
|
// Currently this app is not linking against the engine, so we'll compile out references from Core to the rest of the engine
|
|
bCompileAgainstEngine = false;
|
|
bCompileAgainstCoreUObject = false;
|
|
|
|
// We still need to support old versions of the engine that are compatible with OS X 10.9
|
|
bEnableOSX109Support = true;
|
|
}
|
|
}
|