Files
UnrealEngine/Engine/Source/Runtime/Online/Experimental/EventLoopTests/EventLoopUnitTests.Target.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

15 lines
463 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms(UnrealPlatformClass.All)]
public class EventLoopUnitTestsTarget : TestTargetRules
{
public EventLoopUnitTestsTarget(TargetInfo Target) : base(Target)
{
bCompileAgainstCoreUObject = true;
bCompileAgainstApplicationCore = true;
// Optionally add global definitions for Catch2 benchmarking etc.
GlobalDefinitions.Add("CATCH_CONFIG_ENABLE_BENCHMARKING=1");
}
}