2019-12-26 23:01:54 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-10-03 16:26:48 -04:00
|
|
|
|
|
|
|
|
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;
|
2022-09-07 14:45:10 -04:00
|
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
2019-10-03 16:26:48 -04:00
|
|
|
LaunchModuleName = "BenchmarkTool";
|
|
|
|
|
|
|
|
|
|
bBuildDeveloperTools = false;
|
|
|
|
|
bBuildWithEditorOnlyData = false;
|
|
|
|
|
bCompileAgainstEngine = false;
|
|
|
|
|
bCompileAgainstCoreUObject = false;
|
|
|
|
|
bCompileAgainstApplicationCore = false;
|
|
|
|
|
bIsBuildingConsoleApplication = true;
|
|
|
|
|
}
|
|
|
|
|
}
|