2021-04-30 08:14:54 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
public class Virtualization : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public Virtualization(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2023-05-08 09:40:17 -04:00
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
|
|
|
|
2023-01-11 14:28:01 -05:00
|
|
|
PrivateIncludePathModuleNames.Add("Analytics");
|
|
|
|
|
|
2022-08-29 14:44:54 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2023-10-24 07:26:08 -04:00
|
|
|
new string[] {
|
2022-08-29 14:44:54 -04:00
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"DerivedDataCache",
|
|
|
|
|
"Projects",
|
|
|
|
|
"SourceControl"
|
2023-10-24 07:26:08 -04:00
|
|
|
}
|
|
|
|
|
);
|
2023-06-20 04:26:06 -04:00
|
|
|
|
|
|
|
|
if (Target.bUsesSlate)
|
|
|
|
|
{
|
2023-10-24 07:26:08 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"MessageLog",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore"
|
|
|
|
|
}
|
|
|
|
|
);
|
2023-06-20 04:26:06 -04:00
|
|
|
|
|
|
|
|
PublicDefinitions.Add("UE_VA_WITH_SLATE=1");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
PublicDefinitions.Add("UE_VA_WITH_SLATE=0");
|
|
|
|
|
}
|
2021-04-30 08:14:54 -04:00
|
|
|
}
|
|
|
|
|
}
|