You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
617 B
C#
29 lines
617 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class CEF3Utils : ModuleRules
|
|
{
|
|
public CEF3Utils(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.Add("Runtime/CEF3Utils/Public");
|
|
PrivateIncludePaths.Add("Runtime/CEF3Utils/Private");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
}
|
|
);
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64
|
|
|| Target.Platform == UnrealTargetPlatform.Mac
|
|
|| Target.Platform == UnrealTargetPlatform.Linux)
|
|
{
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target,
|
|
"CEF3"
|
|
);
|
|
}
|
|
}
|
|
}
|