Files
UnrealEngine/Engine/Source/Programs/BenchmarkTool/BenchmarkTool.Target.cs
2025-05-18 13:04:45 +08:00

24 lines
672 B
C#

// Copyright 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;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
LaunchModuleName = "BenchmarkTool";
bBuildDeveloperTools = false;
bBuildWithEditorOnlyData = false;
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = false;
bCompileAgainstApplicationCore = false;
bIsBuildingConsoleApplication = true;
}
}