You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Updated Mac and Linux build to match Windows. #jira none #rb none #preflight 641f6ead973e60967041f5cd #rnx [CL 24796975 by JeanLuc Corenthin in ue5-main branch]
25 lines
471 B
C#
25 lines
471 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)
|
|
{
|
|
PublicIncludePathModuleNames.Add("Launch");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"DatasmithCore",
|
|
"DatasmithExporter",
|
|
"DatasmithExporterUI",
|
|
// Network layer
|
|
"UdpMessaging",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
} |