You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[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]
18 lines
618 B
C#
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);
|
|
}
|
|
}
|