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]
28 lines
533 B
C#
28 lines
533 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
[SupportedPlatforms("Win64", "Mac", "Linux")]
|
|
public class DatasmithExporterUI : ModuleRules
|
|
{
|
|
public DatasmithExporterUI(ReadOnlyTargetRules Target)
|
|
: base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"DatasmithCore",
|
|
"DatasmithExporter",
|
|
"DesktopPlatform",
|
|
"DirectLink",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
});
|
|
}
|
|
}
|
|
} |