Files
UnrealEngineUWP/Engine/Source/Developer/LowLevelTestsRunner/LowLevelTestsRunner.Build.cs
rafa lecina e8de6303db Add explicit dependency to Core in LowLevelTestsRunner and fix missing symbols if ApplicationCore is not included for iOS
[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]
2023-06-19 08:50:57 -04:00

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