Files
UnrealEngineUWP/Engine/Source/Developer/PakFileUtilities/PakFileUtilities.Build.cs
Rolando Caloca 532adaa65c DR - Merging //UE4/Dev-Main@5531558 to Dev-Rendering (//UE4/Dev-Rendering)
#rb none
#rnx

[CL 5591014 by Rolando Caloca in Dev-Rendering branch]
2019-03-27 11:33:31 -04:00

17 lines
426 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class PakFileUtilities : ModuleRules
{
public PakFileUtilities(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(new string[] { "Core", "PakFile", "Json", "Projects", "RSA" });
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Json"
});
}
}