Files
UnrealEngineUWP/Engine/Source/Programs/EpicWebHelper/EpicWebHelper.Build.cs
alfred reynolds 00ff2ce5ad - Update copyright header in CEF files to match the requirements in the UE5 branch
#jira UE-110192
#jira UE-110195
#jira UE-110196
[FYI] wes.fudala
[FYI] JeanFrancois.Dube
#horde 47017
#horde 47016

#ROBOMERGE-SOURCE: CL 15657948 in //UE5/Release-5.0-EarlyAccess/...
#ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v779-15635321)

[CL 15657981 by alfred reynolds in ue5-main branch]
2021-03-09 15:32:23 -04:00

36 lines
646 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class EpicWebHelper : ModuleRules
{
public EpicWebHelper(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.Add("Runtime/Launch/Public");
PrivateIncludePaths.AddRange(
new string[]
{
"Programs/EpicWebHelper/Private",
"Runtime/Launch/Private", // for LaunchEngineLoop.cpp include
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"ApplicationCore",
"Projects",
"CEF3Utils",
}
);
AddEngineThirdPartyPrivateStaticDependencies(Target,
"CEF3"
);
}
}