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

24 lines
531 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class EventLoopUnitTests : TestModuleRules
{
static EventLoopUnitTests()
{
TestMetadata = new Metadata();
TestMetadata.TestName = "EventLoop";
TestMetadata.TestShortName = "EventLoop";
}
public EventLoopUnitTests(ReadOnlyTargetRules Target) : base(Target)
{
OptimizeCode = CodeOptimization.Never;
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"EventLoop",
"Sockets"
});
}
}