Files
UnrealEngine/Engine/Plugins/Enterprise/DatasmithImporter/Source/DatasmithExternalSource/DatasmithExternalSource.Build.cs
2025-05-18 13:04:45 +08:00

43 lines
944 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class DatasmithExternalSource : ModuleRules
{
public DatasmithExternalSource(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"DirectLinkExtension",
"ExternalSource",
"DatasmithNativeTranslator",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"DatasmithCore",
"DatasmithTranslator",
"Projects",
}
);
if (Target.Type == TargetType.Editor)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"DesktopPlatform",
"DirectLinkExtensionEditor",
"Slate",
"UnrealEd",
}
);
}
}
}
}