Files
UnrealEngine/Engine/Source/Developer/ScreenShotComparison/ScreenShotComparison.Build.cs
2025-05-18 13:04:45 +08:00

41 lines
725 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[] {
"ToolWidgets",
"InputCore",
"ScreenShotComparisonTools",
"Slate",
"SlateCore",
"ImageWrapper",
"CoreUObject",
"DesktopWidgets",
"SourceControl",
"AutomationMessages",
"Json",
"JsonUtilities",
"DirectoryWatcher"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
}
);
}
}