Files
UnrealEngineUWP/Engine/Source/Developer/ScreenShotComparison/ScreenShotComparison.Build.cs
henrik karlsson ea8ea49aa2 [UBT]
* Changed lots of modules to use IWYUSupport instead of bEnforceIWYU (which is being deprecated)

#preflight 63bc8486c45a2c81e0b14fe8
#rb none

[CL 23641460 by henrik karlsson in ue5-main branch]
2023-01-11 01:32:59 -05:00

43 lines
776 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ScreenShotComparison : ModuleRules
{
public ScreenShotComparison(ReadOnlyTargetRules Target) : base(Target)
{
IWYUSupport = IWYUSupport.None;
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",
}
);
}
}