Files
UnrealEngineUWP/Engine/Source/Editor/MovieSceneCaptureDialog/MovieSceneCaptureDialog.Build.cs
bryan sefcik d205101cc8 Removed unnecessary private include modules.
#preflight 645da640cf788a25581110bb

[CL 25451545 by bryan sefcik in ue5-main branch]
2023-05-12 12:13:52 -04:00

35 lines
627 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class MovieSceneCaptureDialog : ModuleRules
{
public MovieSceneCaptureDialog(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Json",
"JsonUtilities",
"MovieScene",
"MovieSceneCapture",
"MovieSceneTools",
"PropertyEditor",
"SessionServices",
"Slate",
"SlateCore",
"EditorFramework",
"UnrealEd",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
}
);
}
}