You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Fixed copyright notices #rb Peter.Engstrom #jira none #preflight none [CL 21068554 by Mattias Hornlund in ue5-main branch]
58 lines
1.1 KiB
C#
58 lines
1.1 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class ReplicationSystemTestPlugin : ModuleRules
|
|
{
|
|
public ReplicationSystemTestPlugin(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
var EngineDir = Path.GetFullPath(Target.RelativeEnginePath);
|
|
|
|
// We never want to precompile this plugin
|
|
PrecompileForTargets = PrecompileTargetsType.None;
|
|
|
|
PublicIncludePaths.AddRange(
|
|
new string[] {
|
|
ModuleDirectory + "/Public",
|
|
|
|
}
|
|
);
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[]
|
|
{
|
|
Path.Combine(EngineDir, "Source/Runtime/Experimental/Iris/Core/Private"),
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"Projects",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"CoreUObject",
|
|
"Engine",
|
|
"NetCore",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
// ... add any modules that your module loads dynamically here ...
|
|
}
|
|
);
|
|
|
|
SetupIrisSupport(Target);
|
|
}
|
|
}
|
|
}
|