You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb chris.gagnon #jira UETOOL-2769 [CL 15208207 by sebastian nordgren in ue5-main branch]
22 lines
435 B
C#
22 lines
435 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class EditorConfig : ModuleRules
|
|
{
|
|
public EditorConfig(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"EditorSubsystem",
|
|
"Engine",
|
|
"Json",
|
|
"UnrealEd",
|
|
} );
|
|
}
|
|
}
|
|
}
|