Files
UnrealEngineUWP/Engine/Source/Programs/EpicWebHelper/EpicWebHelper.Build.cs
joe kirchoff 581832117c Update BuildSettingVersion.Latest to V4
[CL 25881036 by joe kirchoff in ue5-main branch]
2023-06-08 16:11:38 -04:00

29 lines
511 B
C#

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