Files
UnrealEngineUWP/Engine/Source/Runtime/InputCore/InputCore.Build.cs
T

21 lines
540 B
C#
Raw Normal View History

2019-12-26 14:45:42 -05:00
// 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" });
2017-09-01 06:50:08 -04:00
if(Target.Platform == UnrealTargetPlatform.IOS || Target.Platform == UnrealTargetPlatform.TVOS)
{
PrivateIncludePathModuleNames.Add("ApplicationCore");
}
if(Target.IsInPlatformGroup(UnrealPlatformGroup.Linux))
{
PrivateIncludePathModuleNames.Add("SDL2");
}
}
}