You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Jerome.Delattre #preflight 6452abfd4d593c0b422b5d9e [CL 25335483 by chris constantinescu in ue5-main branch]
33 lines
663 B
C#
33 lines
663 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ReplicationSystemLowLevelTests : TestModuleRules
|
|
{
|
|
public ReplicationSystemLowLevelTests(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"IrisCore",
|
|
"ReplicationSystemTestPlugin",
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Engine",
|
|
"RHI",
|
|
"SlateCore",
|
|
"InputCore",
|
|
"ApplicationCore"
|
|
}
|
|
);
|
|
|
|
UpdateBuildGraphPropertiesFile(new Metadata() { TestName = "ReplicationSystem", TestShortName = "Replication System" });
|
|
}
|
|
}
|