Files
UnrealEngine/Engine/Source/Programs/Enterprise/Datasmith/DatasmithSDK/DatasmithSDK.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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",
}
);
}
}
}