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

22 lines
575 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class InputCore : ModuleRules
{
public InputCore(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject" });
if(Target.IsInPlatformGroup(UnrealPlatformGroup.IOS))
{
PrivateIncludePathModuleNames.Add("ApplicationCore");
}
if(Target.IsInPlatformGroup(UnrealPlatformGroup.Linux))
{
PrivateIncludePathModuleNames.Add("SDL3");
}
CppCompileWarningSettings.UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}