You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
CookOnTheFly, CookOnTheFlyNetServer, PakFile, PakFileUtilities #rb PJ.Kack #jira UE-166274 #preflight 63c06dc3a06ab115ea7daaf2 [CL 23669256 by Francis Hurteau in ue5-main branch]
33 lines
650 B
C#
33 lines
650 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class PakFileUtilities : ModuleRules
|
|
{
|
|
public PakFileUtilities(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Warning;
|
|
PrivateDependencyModuleNames.AddRange(new string[] {
|
|
"Core",
|
|
"PakFile",
|
|
"Json",
|
|
"Projects",
|
|
"RSA",
|
|
"IoStoreUtilities",
|
|
});
|
|
|
|
PrivateIncludePathModuleNames.AddRange(new string[] {
|
|
"DerivedDataCache",
|
|
"Json",
|
|
});
|
|
|
|
if (Target.bBuildWithEditorOnlyData)
|
|
{
|
|
DynamicallyLoadedModuleNames.AddRange(new string[] {
|
|
"DerivedDataCache",
|
|
"Virtualization",
|
|
});
|
|
}
|
|
}
|
|
}
|