You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-183924 #rb adam.miezianko, chris.constantinescu, jerome.delattre #preflight 646282fcb87b09aadd2b32a6 #preflight 646282c35b775f11fb08be45 [CL 25503473 by mikalai sukhikh in ue5-main branch]
40 lines
767 B
C#
40 lines
767 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ScreenShotComparisonTools : ModuleRules
|
|
{
|
|
public ScreenShotComparisonTools(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject"
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"AutomationMessages",
|
|
|
|
"ImageWrapper",
|
|
"Json",
|
|
"JsonUtilities",
|
|
"DesktopPlatform"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"MessagingCommon",
|
|
"LauncherServices"
|
|
}
|
|
);
|
|
|
|
if (Target.bCompileAgainstEngine && Target.Configuration != UnrealTargetConfiguration.Shipping)
|
|
{
|
|
PrecompileForTargets = PrecompileTargetsType.Any;
|
|
}
|
|
}
|
|
}
|