Files
UnrealEngineUWP/Engine/Source/Developer/Datasmith/DatasmithExporter/DatasmithExporter.Build.cs
JeanMichel Dignard d4f0f4d3f2 Copying //UE4/Dev-Enterprise @ cl 9420543 to Dev-Main (//UE4/Dev-Main)
#rb none

[CL 9420574 by JeanMichel Dignard in Main branch]
2019-10-04 13:11:45 -04:00

43 lines
848 B
C#

// Copyright 1998-2019 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",
"Projects",
"RawMesh",
"MeshDescription",
"MeshDescriptionOperations",
"StaticMeshDescription"
}
);
PrivateIncludePaths.AddRange(
new string[]
{
"Runtime/Launch/Public"
}
);
// PrecompileForTargets = PrecompileTargetsType.Any;
}
}
}