Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

61 lines
1.0 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class VPUtilities : ModuleRules
{
public VPUtilities(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(
new string[]
{
"AssetRegistry",
"CinematicCamera",
"CineCameraSceneCapture",
"Core",
"CoreUObject",
"Engine",
"GameplayTags",
"TimeManagement",
"UMG",
"VPBookmark",
"VPSettings"
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"ApplicationCore",
"Projects",
"Renderer",
"RenderCore",
"RHI",
"Slate",
"SlateCore",
"ConcertClient",
"VPRoles"
}
);
if (Target.Type == TargetType.Editor)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Blutility",
"EditorFramework",
"LevelEditor",
"UMGEditor",
"UnrealEd",
"ViewportInteraction",
"VPBookmarkEditor",
"VREditor",
}
);
}
}
}