2020-09-24 00:43:27 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
2021-10-12 21:21:22 -04:00
|
|
|
using System.IO;
|
2020-09-24 00:43:27 -04:00
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2021-10-12 21:21:22 -04:00
|
|
|
public class ConsoleVariablesEditor : ModuleRules
|
2020-09-24 00:43:27 -04:00
|
|
|
{
|
2021-10-12 21:21:22 -04:00
|
|
|
public ConsoleVariablesEditor(ReadOnlyTargetRules Target) : base(Target)
|
2020-09-24 00:43:27 -04:00
|
|
|
{
|
|
|
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
2021-10-12 21:21:22 -04:00
|
|
|
|
2020-09-24 00:43:27 -04:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
2021-10-12 21:21:22 -04:00
|
|
|
"OutputLog"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
2020-09-24 00:43:27 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
2021-11-18 14:37:34 -05:00
|
|
|
"Concert",
|
|
|
|
|
"ConcertSyncClient",
|
|
|
|
|
"ConcertSyncCore",
|
|
|
|
|
"ConcertTransport",
|
2021-10-12 21:21:22 -04:00
|
|
|
"AssetRegistry",
|
|
|
|
|
"AssetTools",
|
2020-09-24 00:43:27 -04:00
|
|
|
"CoreUObject",
|
2021-10-12 21:21:22 -04:00
|
|
|
"ContentBrowser",
|
2020-09-24 00:43:27 -04:00
|
|
|
"Engine",
|
2021-10-12 21:21:22 -04:00
|
|
|
"EditorStyle",
|
|
|
|
|
"EditorWidgets",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"Kismet",
|
|
|
|
|
"Projects",
|
|
|
|
|
"PropertyEditor",
|
2020-09-24 00:43:27 -04:00
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2021-10-12 21:21:22 -04:00
|
|
|
"ToolMenus",
|
2020-09-24 00:43:27 -04:00
|
|
|
"UnrealEd",
|
2021-11-18 14:37:34 -05:00
|
|
|
"WorkspaceMenuStructure"
|
2020-09-24 00:43:27 -04:00
|
|
|
}
|
2021-10-12 21:21:22 -04:00
|
|
|
);
|
2020-09-24 00:43:27 -04:00
|
|
|
}
|
|
|
|
|
}
|