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

26 lines
468 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class DatasmithCADWorker : ModuleRules
{
public DatasmithCADWorker(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.Add("Launch");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Projects",
"ApplicationCore",
"Sockets",
"DatasmithDispatcher",
"CADInterfaces",
"CADTools",
}
);
}
}