Files
UnrealEngineUWP/Engine/Source/Developer/IOS/IOSTargetPlatform/IOSTargetPlatform.Build.cs
florin pascu fb603bc427 IOS/TVOS/VisionOS TP refactor to TPS/TPC
#rb adam.kinge
#jira UE-206488

[CL 31807213 by florin pascu in ue5-main branch]
2024-02-26 12:11:20 -05:00

22 lines
420 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class IOSTargetPlatform : ModuleRules
{
public IOSTargetPlatform(ReadOnlyTargetRules Target) : base(Target)
{
BinariesSubFolder = "IOS";
SDKVersionRelevantPlatforms.Add(UnrealTargetPlatform.IOS);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"TargetPlatform",
"DesktopPlatform",
}
);
}
}