2014-10-02 10:53:05 -04:00
|
|
|
// 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",
|
2014-10-15 08:32:12 -04:00
|
|
|
"Slate",
|
2014-10-02 10:53:05 -04:00
|
|
|
"CEF3Utils",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2014-10-10 03:44:50 -04:00
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64)
|
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
|
|
|
}
|
|
|
|
|
}
|