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

40 lines
794 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class CommonConversationGraph : ModuleRules
{
public CommonConversationGraph(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core"
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"BlueprintGraph",
"CoreUObject",
"Engine",
"Slate",
"SlateCore",
"CommonConversationRuntime",
"GraphEditor",
"AIGraph",
"AIModule",
"UnrealEd",
"KismetWidgets",
"ToolMenus",
"PropertyEditor",
"GameplayTags"
// ... add private dependencies that you statically link with here ...
}
);
}
}