Files
UnrealEngineUWP/Engine/Source/Developer/Datasmith/DatasmithExporterUI/DatasmithExporterUI.Build.cs
JeanLuc Corenthin e69953c0af Added C# facade to DatasmithSDK package
Updated Mac and Linux build to match Windows.

#jira none
#rb none
#preflight 641f6ead973e60967041f5cd
#rnx

[CL 24796975 by JeanLuc Corenthin in ue5-main branch]
2023-03-25 18:23:22 -04:00

28 lines
533 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
namespace UnrealBuildTool.Rules
{
[SupportedPlatforms("Win64", "Mac", "Linux")]
public class DatasmithExporterUI : ModuleRules
{
public DatasmithExporterUI(ReadOnlyTargetRules Target)
: base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"DatasmithCore",
"DatasmithExporter",
"DesktopPlatform",
"DirectLink",
"InputCore",
"Slate",
"SlateCore",
});
}
}
}