You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #rnx #preflight 640749b38c0039bbf7b538ee - Allows UVT to compile in modular mode. [CL 24539631 by paul chipchase in ue5-main branch]
26 lines
506 B
C#
26 lines
506 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class UnrealVirtualizationTool : ModuleRules
|
|
{
|
|
public UnrealVirtualizationTool(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Virtualization",
|
|
"Projects",
|
|
"ApplicationCore",
|
|
"SourceControl",
|
|
"PerforceSourceControl",
|
|
"DesktopPlatform",
|
|
"Json"
|
|
});
|
|
|
|
PublicIncludePathModuleNames.Add("Launch");
|
|
}
|
|
}
|