Files
UnrealEngine/Engine/Source/Programs/Enterprise/Datasmith/DatasmithSDK/DatasmithSDK.Build.cs
2025-05-18 13:04:45 +08:00

27 lines
515 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)
{
CppStandard = CppStandardVersion.Cpp20;
PublicIncludePathModuleNames.Add("Launch");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"DatasmithCore",
"DatasmithExporter",
"DatasmithExporterUI",
// Network layer
"UdpMessaging",
}
);
}
}
}