Files
UnrealEngineUWP/Engine/Source/Programs/ToolMenusTests/ToolMenusTests.Target.cs
sebastian arleryd cce19caaab Add low-level unit test project for ToolMenus
Includes a few tests to verify that the tests themselves work.

#jira UE-201151
#rb aditya.ravichandran, Rex.Hill

[CL 29935603 by sebastian arleryd in ue5-main branch]
2023-11-27 11:23:23 -05:00

17 lines
536 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms(UnrealPlatformClass.All)]
public class ToolMenusTestsTarget : TestTargetRules
{
public ToolMenusTestsTarget(TargetInfo Target) : base(Target)
{
bTestsRequireApplicationCore = true;
bTestsRequireCoreUObject = true;
bBuildWithEditorOnlyData = Target.Platform.IsInGroup(UnrealPlatformGroup.Desktop)
&& (Target.Configuration == UnrealTargetConfiguration.Debug || Target.Configuration == UnrealTargetConfiguration.Development);
}
}