Files
UnrealEngineUWP/Engine/Source/Programs/Enterprise/Datasmith/DatasmithCADWorker/DatasmithCADWorker.Build.cs
david lesage ae21c17ec4 DatasmtihCADWorker still initialize Old CADLibrary but not the new one
#jira UE-143923
#rb jeanluc.corenthin
#preflight 621cd0ae037be0078c9b6f45
#lockdown cristina.riveron

#ROBOMERGE-AUTHOR: david.lesage
#ROBOMERGE-SOURCE: CL 19173080 in //UE5/Release-5.0/... via CL 19173492
#ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v921-19075845)

[CL 19173722 by david lesage in ue5-main branch]
2022-02-28 10:20:08 -05:00

28 lines
527 B
C#

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