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 #rnx #preflight None, NotTestedByPreflight [CL 23337972 by Matt Peters in ue5-main branch]
17 lines
362 B
C#
17 lines
362 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)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "libzip" });
|
|
}
|
|
}
|
|
}
|