You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Marked XInput1_4.dll for delay load to avoid unnecessary loading in cookers #jira UE-196970 #rb ben.hoffman [CL 31095273 by tyler shaub in ue5-main branch]
22 lines
421 B
C#
22 lines
421 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
using EpicGames.Core;
|
|
using System;
|
|
using System.IO;
|
|
using UnrealBuildTool;
|
|
|
|
public class XInput : ModuleRules
|
|
{
|
|
|
|
public XInput(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Windows))
|
|
{
|
|
PublicSystemLibraries.Add("XInput.lib");
|
|
PublicDelayLoadDLLs.Add("XInput1_4.dll");
|
|
}
|
|
}
|
|
}
|
|
|