You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Nightly LLTs preflight 6205328b4c6c33118fa85c3d #rb Jerome.Delattre,Mark.Lintott #preflight 62053298a155a4cddabf933f [CL 18938635 by chris constantinescu in ue5-main branch]
45 lines
917 B
C#
45 lines
917 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
public class LowLevelTestsRunner : ModuleRules
|
|
{
|
|
public LowLevelTestsRunner(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PCHUsage = PCHUsageMode.NoPCHs;
|
|
PrecompileForTargets = PrecompileTargetsType.None;
|
|
bUseUnity = false;
|
|
bRequiresImplementModule = false;
|
|
|
|
PublicIncludePaths.AddRange(
|
|
new string[]
|
|
{
|
|
"Runtime/Launch/Public",
|
|
Path.Combine(Target.UEThirdPartySourceDirectory, "Catch2")
|
|
}
|
|
);
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"Runtime/Launch/Private"
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"Projects"
|
|
}
|
|
);
|
|
|
|
if (Target.bCompileAgainstApplicationCore)
|
|
{
|
|
PrivateDependencyModuleNames.Add("ApplicationCore");
|
|
}
|
|
|
|
if (Target.bCompileAgainstCoreUObject)
|
|
{
|
|
PrivateDependencyModuleNames.Add("CoreUObject");
|
|
}
|
|
}
|
|
} |