Files
UnrealEngineUWP/Engine/Source/Programs/LowLevelTests/FoundationTests.Target.cs
lorry li 7f221d7240 Fix WebTests Android compile errors.
[REVIEW] [at]stephen.ma [at]chris.constantinescu [at]rafa.lecina
#jira UE-196941
#rb [at]stephen.ma [at]chris.constantinescu [at]rafa.lecina

[CL 28415202 by lorry li in ue5-main branch]
2023-10-03 11:18:54 -04:00

18 lines
618 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms(UnrealPlatformClass.All)]
public class FoundationTestsTarget : TestTargetRules
{
public FoundationTestsTarget(TargetInfo Target) : base(Target)
{
// Collects all tests decorated with #if WITH_LOW_LEVELTESTS from dependencies
bWithLowLevelTestsOverride = true;
bCompileWithPluginSupport = true;
bBuildWithEditorOnlyData = Target.Platform.IsInGroup(UnrealPlatformGroup.Desktop)
&& (Target.Configuration == UnrealTargetConfiguration.Debug || Target.Configuration == UnrealTargetConfiguration.Development);
}
}