You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Adding the MsQuic runtime plugin with the MsQuicRuntime module to load the DLLs via the module interface once for every dependent plugin. #jira UCS-7337 #rb mattias.jansson #preflight 645b5cc82d27fa25b339ad47 [CL 25402277 by valentin ritzi in ue5-main branch]
19 lines
328 B
C#
19 lines
328 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class MsQuicRuntime : ModuleRules
|
|
{
|
|
public MsQuicRuntime(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"MsQuic"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|