You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-152646 #rb Patrick.Hardy, Alejandro.Aranjo #preflight 629156f3532586228db0e6a0 [CL 20400812 by trystan binkley-Jone in ue5-main branch]
39 lines
801 B
C#
39 lines
801 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class DisplayClusterLightCardEditor : ModuleRules
|
|
{
|
|
public DisplayClusterLightCardEditor(ReadOnlyTargetRules ROTargetRules) : base(ROTargetRules)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
|
|
"AdvancedPreviewScene",
|
|
"ApplicationCore",
|
|
"AppFramework",
|
|
"Core",
|
|
"CoreUObject",
|
|
"DisplayCluster",
|
|
"DisplayClusterConfiguration",
|
|
"DisplayClusterOperator",
|
|
"DisplayClusterLightCardEditorShaders",
|
|
"EditorStyle",
|
|
"Engine",
|
|
"InputCore",
|
|
"OpenCV",
|
|
"OpenCVHelper",
|
|
"PropertyEditor",
|
|
"RenderCore",
|
|
"Renderer",
|
|
"RHI",
|
|
"Slate",
|
|
"SlateCore",
|
|
"UnrealEd",
|
|
"WorkspaceMenuStructure",
|
|
"ToolWidgets",
|
|
});
|
|
}
|
|
}
|