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

23 lines
506 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using UnrealBuildTool;
using EpicGames.Core;
using Microsoft.Extensions.Logging;
public class Interpose : ModuleRules
{
public Interpose(ReadOnlyTargetRules Target) : base(Target)
{
Type = ModuleType.External;
if (Target.Platform == UnrealTargetPlatform.IOS)
{
PublicAdditionalFrameworks.Add(new Framework("Interpose", ModuleDirectory, "", true));
}
}
}