Files
UnrealEngineUWP/Engine/Source/Developer/ScreenShotComparison/ScreenShotComparison.Build.cs
henrik karlsson f01581365c Disabled IWYU on some modules that was too much work to make them compile in a IWYU environment. These should be revisited and fixed up to work with IWYU at some point
#preflight 63789b0c170bc34a93a869e5
#rb none

[CL 23218413 by henrik karlsson in ue5-main branch]
2022-11-21 03:22:29 -05:00

43 lines
766 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ScreenShotComparison : ModuleRules
{
public ScreenShotComparison(ReadOnlyTargetRules Target) : base(Target)
{
bEnforceIWYU = false;
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AutomationController",
"ToolWidgets",
"InputCore",
"ScreenShotComparisonTools",
"Slate",
"SlateCore",
"ImageWrapper",
"CoreUObject",
"DesktopWidgets",
"SourceControl",
"AutomationMessages",
"Json",
"JsonUtilities",
"DirectoryWatcher"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"SessionServices",
}
);
}
}