Files
UnrealEngineUWP/Engine/Source/Developer/Datasmith/DatasmithExporterUI/DatasmithExporterUI.Build.cs
Marc Audy 4c1bb11c29 Merge UE5/Release-Engine-Staging to UE5/Main @ 14548662
This represents UE4/Main @ 14525125 + cherrypicked fixes
#skipundocheck

[CL 14551026 by Marc Audy in ue5-main branch]
2020-10-22 19:19:16 -04:00

28 lines
524 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
namespace UnrealBuildTool.Rules
{
[SupportedPlatforms("Win64", "Mac")]
public class DatasmithExporterUI : ModuleRules
{
public DatasmithExporterUI(ReadOnlyTargetRules Target)
: base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"DatasmithCore",
"DatasmithExporter",
"DesktopPlatform",
"DirectLink",
"InputCore",
"Slate",
"SlateCore",
});
}
}
}