You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb per.larsson #rnx #ROBOMERGE-AUTHOR: carlmagnus.nordin #ROBOMERGE-SOURCE: CL 17517167 via CL 17517189 via CL 17517191 via CL 17519703 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v870-17433530) #ROBOMERGE[STARSHIP]: UE5-Main [CL 17519714 by carlmagnus nordin in ue5-release-engine-test branch]
27 lines
590 B
C#
27 lines
590 B
C#
// Copyright 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",
|
|
"IoStoreUtilities",
|
|
});
|
|
|
|
PrivateIncludePathModuleNames.AddRange(new string[] {
|
|
"DerivedDataCache",
|
|
"Json",
|
|
});
|
|
|
|
DynamicallyLoadedModuleNames.Add("DerivedDataCache");
|
|
|
|
}
|
|
}
|