Files
UnrealEngineUWP/Engine/Source/Runtime/InstallBundleManager/InstallBundleManager.Build.cs
bryan sefcik 9be15506ad Removed InstallBundleManager private pch.
Timing when compiling module with PCH(including compiling PCH): 5.64 secs
Timing using shared PCH: 4.44s secs
#preflight 62a0dfeefc5ffe569a72fb6a

[CL 20561720 by bryan sefcik in ue5-main branch]
2022-06-08 14:44:56 -04:00

22 lines
387 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class InstallBundleManager : ModuleRules
{
public InstallBundleManager(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Projects",
"ApplicationCore",
"Json"
}
);
}
}