Files
UnrealEngine/Engine/Source/Developer/Mac/MacTargetPlatform/MacTargetPlatform.Build.cs
2025-05-18 13:04:45 +08:00

27 lines
552 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class MacTargetPlatform : ModuleRules
{
public MacTargetPlatform(ReadOnlyTargetRules Target) : base(Target)
{
SDKVersionRelevantPlatforms.Add(UnrealTargetPlatform.Mac);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"TargetPlatform",
"DesktopPlatform",
"MacTargetPlatformSettings",
"MacTargetPlatformControls",
}
);
if (Target.bCompileAgainstEngine)
{
PublicIncludePathModuleNames.Add("Engine");
}
}
}