Files
UnrealEngineUWP/Engine/Plugins/Enterprise/DatasmithContent/Source/DatasmithContentEditor/DatasmithContentEditor.Build.cs
kerim borchaev ec50b80fd2 DatasmithContentEditor - Replace usage of IAssetTypeActions_AssetInterface with UAssetDefinition for DatasmithScene
#jira UE-174971
#preflight 6412c820717662d507b95b23
#rb benoit.deschenes

[CL 24685397 by kerim borchaev in ue5-main branch]
2023-03-17 02:31:46 -04:00

39 lines
718 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class DatasmithContentEditor : ModuleRules
{
public DatasmithContentEditor(ReadOnlyTargetRules Target)
: base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"AssetDefinition",
"ContentBrowser",
"Core",
"CoreUObject",
"DatasmithContent",
"DesktopPlatform",
"EditorFramework",
"Engine",
"Projects",
"UnrealEd",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"InputCore",
"PropertyEditor",
"SlateCore",
"Slate",
"ToolMenus",
"DetailCustomizations",
}
);
}
}
}