Files
UnrealEngineUWP/Engine/Plugins/Runtime/ReplicationSystemTestPlugin/Source/ReplicationSystemTestPlugin.Build.cs
christopher waters 73c74eaf42 Removing redundant include paths:
- PublicIncludePaths.Add(ModuleDirectory + "/Public");
- PrivateIncludePaths.Add("<module name>/Private");

#preflight 63ef03623c1eb56f057db7de

[CL 24285283 by christopher waters in ue5-main branch]
2023-02-17 12:45:29 -05:00

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);
}
}
}