Files
UnrealEngineUWP/Engine/Source/Programs/BenchmarkTool/BenchmarkTool.Target.cs
CarlMagnus Nordin a7769cc876 Copying //UE4/Dev-Core-ZenProto to Dev-Core (//UE4/Dev-Core)
#rb none

[CL 9300761 by CarlMagnus Nordin in Dev-Core branch]
2019-09-30 11:42:23 -04:00

24 lines
657 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class BenchmarkToolTarget : TargetRules
{
public BenchmarkToolTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
LaunchModuleName = "BenchmarkTool";
bBuildDeveloperTools = false;
bUseMallocProfiler = false;
bBuildWithEditorOnlyData = false;
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = false;
bCompileAgainstApplicationCore = false;
bIsBuildingConsoleApplication = true;
}
}