2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class ScreenShotComparisonTools : ModuleRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public ScreenShotComparisonTools(ReadOnlyTargetRules Target) : base(Target)
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
2014-04-23 19:18:37 -04:00
|
|
|
new string[] {
|
2014-03-14 14:13:41 -04:00
|
|
|
"Core",
|
2020-06-23 18:40:00 -04:00
|
|
|
"CoreUObject"
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2014-04-23 19:18:37 -04:00
|
|
|
new string[] {
|
2014-03-14 14:13:41 -04:00
|
|
|
"AutomationMessages",
|
2020-06-23 18:40:00 -04:00
|
|
|
"EditorStyle",
|
2016-09-21 10:07:18 -04:00
|
|
|
"ImageWrapper",
|
|
|
|
|
"Json",
|
2017-08-30 09:37:09 -04:00
|
|
|
"JsonUtilities",
|
|
|
|
|
"Slate",
|
2020-06-23 18:40:00 -04:00
|
|
|
"UnrealEdMessages",
|
|
|
|
|
"DesktopPlatform"
|
|
|
|
|
}
|
|
|
|
|
);
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
2014-04-23 19:18:37 -04:00
|
|
|
new string[] {
|
2020-06-23 18:40:00 -04:00
|
|
|
"MessagingCommon",
|
|
|
|
|
}
|
2014-03-14 14:13:41 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePaths.AddRange(
|
2014-04-23 19:18:37 -04:00
|
|
|
new string[] {
|
2014-03-14 14:13:41 -04:00
|
|
|
"Developer/ScreenShotComparisonTools/Private"
|
|
|
|
|
}
|
|
|
|
|
);
|
2018-01-20 11:19:29 -05:00
|
|
|
|
|
|
|
|
if (Target.bCompileAgainstEngine && Target.Configuration != UnrealTargetConfiguration.Shipping)
|
|
|
|
|
{
|
|
|
|
|
PrecompileForTargets = PrecompileTargetsType.Any;
|
|
|
|
|
}
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|