Files
UnrealEngine/Engine/Source/Programs/Mac/UnrealEditorServices/UnrealEditorServices.Build.cs
2025-05-18 13:04:45 +08:00

22 lines
408 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class UnrealEditorServices : ModuleRules
{
public UnrealEditorServices(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.Add("Launch");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"ApplicationCore",
"DesktopPlatform",
"Json",
"Projects",
}
);
}
}