Files
Cog/Plugins/Cog/Source/CogDebugEditor/CogDebugEditor.Build.cs
T
2024-03-01 11:04:14 -05:00

51 lines
1.1 KiB
C#

using UnrealBuildTool;
public class CogDebugEditor : ModuleRules
{
public CogDebugEditor(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicIncludePaths.Add(ModuleDirectory + "/Public");
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"Slate",
"SlateCore",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"AssetTools",
"CogCommon",
"CogDebug",
"EditorStyle",
"EditorWidgets",
"InputCore",
"PropertyEditor",
"Slate",
"SlateCore",
"SubobjectEditor",
"ToolMenus",
"UnrealEd",
"BlueprintGraph",
"GraphEditor",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
}
);
}
}