Files
UnrealEngineUWP/Engine/Plugins/Experimental/CommonConversation/Source/CommonConversationRuntime/CommonConversationRuntime.Build.cs
bryan sefcik 91c57d395e Removed redundant module includes.
#preflight 645d4bf3aa3c584c0b5b3a67

[CL 25435653 by bryan sefcik in ue5-main branch]
2023-05-11 16:48:21 -04:00

43 lines
776 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class CommonConversationRuntime : ModuleRules
{
public CommonConversationRuntime(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Engine",
"GameplayTags",
"DeveloperSettings"
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"CoreUObject",
"Slate",
"SlateCore",
"Projects",
"AIModule",
"NetCore",
"GameFeatures"
// ... add private dependencies that you statically link with here ...
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}