Files
UnrealEngineUWP/Engine/Source/Programs/ChaosVisualDebugger/ChaosVisualDebugger.Target.cs
ionut matasaru 3d7c0e8440 UBT: Removed deprecated TargetInfo::bUseMallocProfiler toggle in Source/Programs.
#jira UE-141779
#rb Joe.Kirchoff
#rb Johan.Berg
#preflight 64380aea7a00790bfd116430

[CL 25101875 by ionut matasaru in ue5-main branch]
2023-04-19 04:15:59 -04:00

30 lines
892 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class ChaosVisualDebuggerTarget : TargetRules
{
public ChaosVisualDebuggerTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
LaunchModuleName = "ChaosVisualDebugger";
// Lean and mean
bBuildDeveloperTools = 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
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = true;
//bCompileAgainstApplicationCore = false;
// This a Windows app (sets entry point to WinMain(), instead of main())
bIsBuildingConsoleApplication = false;
}
}