Files
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

26 lines
702 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class UnsyncTarget : TargetRules
{
public UnsyncTarget(TargetInfo Target) : base(Target)
{
Name = "unsync";
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
LaunchModuleName = "Unsync";
bBuildDeveloperTools = false;
bCompileICU = false;
bBuildWithEditorOnlyData = false;
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = false;
bEnforceIWYU = false;
GlobalDefinitions.Add("_CRT_SECURE_NO_WARNINGS");
WindowsPlatform.TargetWindowsVersion = 0x0603; // Windows 8.1
bUseStaticCRT = true;
bIsBuildingConsoleApplication = true;
}
}