You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #preflight 62cee4d17822772758d9192d [CL 21072009 by Peter Engstrom in ue5-main branch]
47 lines
964 B
C#
47 lines
964 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ReplicationSystemTest : ModuleRules
|
|
{
|
|
public ReplicationSystemTest(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.Add("Runtime/Launch/Public");
|
|
|
|
// For LaunchEngineLoop.cpp include
|
|
PrivateIncludePaths.Add("Runtime/Launch/Private");
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"DerivedDataCache",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"ApplicationCore",
|
|
"AutomationController",
|
|
"AutomationWorker",
|
|
"Core",
|
|
"Projects",
|
|
"Engine",
|
|
"HeadMountedDisplay",
|
|
"InstallBundleManager",
|
|
"MediaUtils",
|
|
"MRMesh",
|
|
"MoviePlayer",
|
|
"MoviePlayerProxy",
|
|
"PreLoadScreen",
|
|
"ProfilerService",
|
|
"ReplicationSystemTestPlugin",
|
|
"SessionServices",
|
|
"SlateNullRenderer",
|
|
"SlateRHIRenderer",
|
|
"TaskGraph",
|
|
}
|
|
);
|
|
}
|
|
}
|