You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#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]
28 lines
527 B
C#
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",
|
|
}
|
|
);
|
|
}
|
|
}
|