Files
UnrealEngineUWP/Engine/Source/Developer/WebBrowser/WebBrowser.Build.cs
Michael Trepka cc71376314 CEF3 integration for Mac in SlateViewer. Still WIP - there's no keyboard support yet and horizontal scrolling with mouse wheel/gestures doesn't work.
#codereview Matthew.Griffin, Mark.Satterthwaite, Dmitry.Rekman

[CL 2367740 by Michael Trepka in Main branch]
2014-11-21 13:41:17 -05:00

32 lines
623 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class WebBrowser : ModuleRules
{
public WebBrowser(TargetInfo Target)
{
PublicIncludePaths.Add("Developer/WebBrowser/Public");
PrivateIncludePaths.Add("Developer/WebBrowser/Private");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"InputCore",
"SlateCore",
"Slate",
"CEF3Utils",
}
);
if (Target.Platform == UnrealTargetPlatform.Win64
|| Target.Platform == UnrealTargetPlatform.Mac)
{
AddThirdPartyPrivateStaticDependencies(Target,
"CEF3"
);
}
}
}