2014-03-14 14:13:41 -04:00
|
|
|
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class ScreenShotComparison : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public ScreenShotComparison(TargetInfo Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2014-04-23 19:18:37 -04:00
|
|
|
new string[] {
|
2014-03-14 14:13:41 -04:00
|
|
|
"Core",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"Slate",
|
|
|
|
|
"EditorStyle",
|
|
|
|
|
"ScreenShotComparisonTools",
|
|
|
|
|
}
|
2014-04-23 19:18:37 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"SessionServices",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Developer/ScreenShotComparison/Private",
|
|
|
|
|
"Developer/ScreenShotComparison/Private/Widgets",
|
|
|
|
|
"Developer/ScreenShotComparison/Private/Models",
|
|
|
|
|
}
|
|
|
|
|
);
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|