Files
christopher waters 6a4206d490 Removing bad Launch include paths from programs.
[CL 24328631 by christopher waters in ue5-main branch]
2023-02-20 17:39:13 -05: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",
}
);
}
}