Files
UnrealEngine/Engine/Source/Editor/EnvironmentLightingViewer/EnvironmentLightingViewer.Build.cs
2025-05-18 13:04:45 +08:00

37 lines
684 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class EnvironmentLightingViewer : ModuleRules
{
public EnvironmentLightingViewer(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"WorkspaceMenuStructure"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"UnrealEd",
"Settings",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetRegistry",
"AssetTools",
"EditorWidgets",
}
);
}
}