Files
UnrealEngineUWP/Engine/Source/Runtime/WebBrowser/WebBrowser.Build.cs
Matthew Griffin 69e5147031 Missed files from CEF3 Win32 checkin
[CL 2408751 by Matthew Griffin in Main branch]
2015-01-16 09:04:57 -05:00

34 lines
685 B
C#

// Copyright 1998-2015 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",
"RHI",
"InputCore",
"SlateCore",
"Slate",
"CEF3Utils",
}
);
if (Target.Platform == UnrealTargetPlatform.Win64
|| Target.Platform == UnrealTargetPlatform.Win32
|| Target.Platform == UnrealTargetPlatform.Mac)
{
AddThirdPartyPrivateStaticDependencies(Target,
"CEF3"
);
}
}
}