You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- PublicIncludePaths.Add(ModuleDirectory + "/Public");
- PrivateIncludePaths.Add("<module name>/Private");
#preflight 63ef03623c1eb56f057db7de
[CL 24285283 by christopher waters in ue5-main branch]
55 lines
1.0 KiB
C#
55 lines
1.0 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class ReplicationSystemTestPlugin : ModuleRules
|
|
{
|
|
public ReplicationSystemTestPlugin(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
// We never want to precompile this plugin
|
|
PrecompileForTargets = PrecompileTargetsType.None;
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[]
|
|
{
|
|
Path.Combine(GetModuleDirectory("IrisCore"), "Private"),
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"Projects",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"CoreUObject",
|
|
"Engine",
|
|
"NetCore",
|
|
}
|
|
);
|
|
|
|
if (Target.IsTestTarget)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"LowLevelTestsRunner",
|
|
}
|
|
);
|
|
}
|
|
|
|
PrivateDefinitions.Add(String.Format("UE_NET_WITH_LOW_LEVEL_TESTS={0}", Target.ExplicitTestsTarget ? "1" : "0"));
|
|
|
|
SetupIrisSupport(Target);
|
|
}
|
|
}
|
|
}
|