2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-10-02 10:53:05 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class WebBrowser : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public WebBrowser(TargetInfo Target)
|
|
|
|
|
{
|
2015-02-24 10:49:58 -05:00
|
|
|
PublicIncludePaths.Add("Runtime/WebBrowser/Public");
|
|
|
|
|
PrivateIncludePaths.Add("Runtime/WebBrowser/Private");
|
2014-10-02 10:53:05 -04:00
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
2015-06-25 16:56:38 -04:00
|
|
|
"CoreUObject",
|
2015-01-05 08:54:59 -05:00
|
|
|
"RHI",
|
2014-10-02 10:53:05 -04:00
|
|
|
"InputCore",
|
2014-10-15 08:32:12 -04:00
|
|
|
"Slate",
|
2015-06-25 16:56:38 -04:00
|
|
|
"SlateCore",
|
|
|
|
|
"Serialization",
|
2014-10-02 10:53:05 -04:00
|
|
|
"CEF3Utils",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2014-11-21 13:41:17 -05:00
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64
|
2015-06-09 16:41:53 -04:00
|
|
|
|| Target.Platform == UnrealTargetPlatform.Win32
|
|
|
|
|
|| Target.Platform == UnrealTargetPlatform.Mac)
|
2014-10-02 10:53:05 -04:00
|
|
|
{
|
|
|
|
|
AddThirdPartyPrivateStaticDependencies(Target,
|
|
|
|
|
"CEF3"
|
|
|
|
|
);
|
2014-10-10 03:44:50 -04:00
|
|
|
}
|
2014-10-02 10:53:05 -04:00
|
|
|
}
|
|
|
|
|
}
|