Files
UnrealEngineUWP/Engine/Source/Developer/Mac/MacTargetPlatform/MacTargetPlatform.Build.cs

22 lines
454 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",
}
);
}
}