You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb None, trivial #preflight None, not tested by preflight. [CL 23300148 by Matt Peters in ue5-main branch]
21 lines
480 B
C#
21 lines
480 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class FileUtilities : ModuleRules
|
|
{
|
|
public FileUtilities(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "Core"});
|
|
|
|
if (Target.bBuildEditor)
|
|
{
|
|
// Temporarily disabled while we fix libzip for mac
|
|
if (Target.Platform != UnrealTargetPlatform.Mac)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "libzip" });
|
|
}
|
|
}
|
|
}
|
|
}
|