Files
bryan sefcik b974474084 Readded SlateCore to fix CIS job.
#preflight none

[CL 25485420 by bryan sefcik in ue5-main branch]
2023-05-16 00:04:39 -04:00

23 lines
407 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class InputDebugging : ModuleRules
{
public InputDebugging(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"ApplicationCore",
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
}
);
}
}
}