Files
UnrealEngineUWP/Engine/Source/Programs/EpicWebHelper/EpicWebHelper.Build.cs
joe kirchoff 642395b334 WebBrowser module compiling with C++20
#rnx

[CL 28090955 by joe kirchoff in ue5-main branch]
2023-09-21 12:45:57 -04:00

28 lines
469 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class EpicWebHelper : ModuleRules
{
public EpicWebHelper(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.Add("Launch");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"ApplicationCore",
"Projects",
"CEF3Utils",
}
);
AddEngineThirdPartyPrivateStaticDependencies(Target,
"CEF3"
);
}
}