You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Nick.Darnell #fyi Paul.Chipchase,Zousar.Shaker #preflight 636248d054471d10bedc3749 [CL 22909100 by mark lintott in ue5-main branch]
24 lines
429 B
C#
24 lines
429 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class Virtualization : ModuleRules
|
|
{
|
|
public Virtualization(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"ApplicationCore",
|
|
"DerivedDataCache",
|
|
"Analytics",
|
|
"MessageLog",
|
|
"Projects",
|
|
"SourceControl"
|
|
});
|
|
}
|
|
}
|