You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 6298f3250f6e137393b9dea7 #rb Zousar.Shaker #rnx [CL 20472431 by Devin Doucette in ue5-main branch]
29 lines
545 B
C#
29 lines
545 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",
|
|
});
|
|
|
|
if (Target.bBuildWithEditorOnlyData)
|
|
{
|
|
DynamicallyLoadedModuleNames.Add("DerivedDataCache");
|
|
}
|
|
}
|
|
}
|