Files
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

25 lines
471 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.IO;
namespace UnrealBuildTool.Rules
{
public class DatasmithSDK : ModuleRules
{
public DatasmithSDK(ReadOnlyTargetRules Target)
: base(Target)
{
PublicIncludePathModuleNames.Add("Launch");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"DatasmithCore",
"DatasmithExporter",
"DatasmithExporterUI",
// Network layer
"UdpMessaging",
}
);
}
}
}