Files
UnrealEngineUWP/Engine/Plugins/Runtime/MsQuic/Source/MsQuicRuntime.Build.cs
valentin ritzi 65e6543e7f [MsQuic] Adding MsQuic plugin with MsQuicRuntime module
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]
2023-05-10 07:49:42 -04:00

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"
}
);
}
}
}