Files
UnrealEngine/Engine/Plugins/Experimental/SubtitlesAndClosedCaptions/Source/SubtitlesAndClosedCaptionsEditor/SubtitlesAndClosedCaptionsEditor.Build.cs
2025-05-18 13:04:45 +08:00

40 lines
718 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class SubtitlesAndClosedCaptionsEditor : ModuleRules
{
public SubtitlesAndClosedCaptionsEditor(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PrivateDependencyModuleNames.AddRange
(
new string[]
{
"AssetTools",
"LevelSequence",
"MovieScene",
"Sequencer",
"SequencerCore",
"Slate",
"SlateCore",
"SubtitlesAndClosedCaptions",
}
);
PublicDependencyModuleNames.AddRange
(
new string[]
{
"AssetDefinition",
"Core",
"CoreUObject",
"Engine",
"UnrealEd"
}
);
}
}
}