forked from Archengius/ZenTools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathZenTools.Target.cs
36 lines (28 loc) · 1.02 KB
/
ZenTools.Target.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class ZenToolsTarget : TargetRules
{
public ZenToolsTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
LaunchModuleName = "ZenTools";
bBuildDeveloperTools = false;
bUseMallocProfiler = false;
bCompileWithPluginSupport = false;
bIncludePluginsForTargetPlatforms = false;
// Editor-only data, however, is needed
bBuildWithEditorOnlyData = true;
// Currently this app uses AssetRegistry and CoreUObject, but not Engine
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = true;
// ICU is not needed
bCompileICU = false;
// ZenToolsTarget is a console application, not a Windows app (sets entry point to main(), instead of WinMain())
bCompileAgainstApplicationCore = false;
bIsBuildingConsoleApplication = true;
GlobalDefinitions.Add("UE_TRACE_ENABLED=1");
}
}