You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[REVIEW] [at]Bertrand.Carre, [at]Michael.Kirzinger, [at]Chris.Constantinescu, [at]Stephen.Ma #jira UE-166445 [CL 26087804 by rafa lecina in 5.3 branch]
31 lines
625 B
C#
31 lines
625 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class LowLevelTestsRunner : ModuleRules
|
|
{
|
|
public LowLevelTestsRunner(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PCHUsage = PCHUsageMode.NoPCHs;
|
|
PrecompileForTargets = PrecompileTargetsType.None;
|
|
bUseUnity = false;
|
|
bRequiresImplementModule = false;
|
|
|
|
PublicIncludePaths.AddRange(
|
|
new string[]
|
|
{
|
|
Path.Combine(Target.UEThirdPartySourceDirectory, "Catch2", "v3.0.1", "src")
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|