Files
UnrealEngine/Engine/Source/Runtime/CEF3Utils/CEF3Utils.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
506 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class CEF3Utils : ModuleRules
{
public CEF3Utils(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
}
);
if (Target.Platform == UnrealTargetPlatform.Win64
|| Target.Platform == UnrealTargetPlatform.Mac
|| Target.Platform == UnrealTargetPlatform.Linux)
{
AddEngineThirdPartyPrivateStaticDependencies(Target,
"CEF3"
);
}
}
}