2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-10-04 13:11:45 -04:00
|
|
|
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",
|
2020-01-23 16:28:59 -05:00
|
|
|
"StaticMeshDescription",
|
2019-10-04 13:11:45 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Runtime/Launch/Public"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// PrecompileForTargets = PrecompileTargetsType.Any;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|