Files
UnrealEngineUWP/Engine/Source/Developer/Datasmith/DatasmithExporter/DatasmithExporter.Build.cs
Marcus Wassmer 3b81cf8201 Merging using //UE5/Main_to_//UE5/Release-Engine-Staging @14384769
autoresolved files
#rb none

[CL 14384911 by Marcus Wassmer in ue5-main branch]
2020-09-24 00:43:27 -04:00

47 lines
831 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.IO;
namespace UnrealBuildTool.Rules
{
public class DatasmithExporter : ModuleRules
{
public DatasmithExporter(ReadOnlyTargetRules Target)
: base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"DatasmithCore",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"ApplicationCore",
"CoreUObject",
"FreeImage",
"MeshDescription",
"MessagingCommon",
"Projects",
"RawMesh",
"StaticMeshDescription",
"Slate",
"InputCore",
"SlateCore",
"StandaloneRenderer",
}
);
PrivateIncludePaths.AddRange(
new string[]
{
"Runtime/Launch/Public"
}
);
// PrecompileForTargets = PrecompileTargetsType.Any;
}
}
}