2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2017-06-21 10:25:35 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
public class MeshMergeUtilities : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public MeshMergeUtilities(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string [] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
2020-08-14 13:24:16 -04:00
|
|
|
"EditorFramework",
|
2017-06-21 10:25:35 -04:00
|
|
|
"Engine",
|
|
|
|
|
"RenderCore",
|
|
|
|
|
"Renderer",
|
|
|
|
|
"RHI",
|
|
|
|
|
"Landscape",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
"MaterialUtilities",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"Slate",
|
|
|
|
|
"StaticMeshEditor",
|
|
|
|
|
"MaterialBaking",
|
2018-07-31 05:49:40 -04:00
|
|
|
"MeshUtilitiesCommon",
|
2019-11-04 12:21:36 -05:00
|
|
|
"ToolMenus",
|
2017-06-21 10:25:35 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string [] {
|
2018-10-03 16:09:08 -04:00
|
|
|
"RawMesh",
|
2018-09-18 13:00:20 -04:00
|
|
|
"MeshDescription",
|
2019-10-01 20:41:42 -04:00
|
|
|
"StaticMeshDescription",
|
2017-06-21 10:25:35 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"HierarchicalLODUtilities",
|
|
|
|
|
"MeshUtilities",
|
|
|
|
|
"MeshReductionInterface",
|
2020-08-17 16:46:42 -04:00
|
|
|
"SkeletalMeshEditor",
|
|
|
|
|
"Persona",
|
2017-06-21 10:25:35 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"HierarchicalLODUtilities",
|
|
|
|
|
"MeshUtilities",
|
|
|
|
|
"MeshReductionInterface",
|
|
|
|
|
"MaterialBaking",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"HierarchicalLODUtilities",
|
|
|
|
|
"MeshUtilities",
|
|
|
|
|
"MeshReductionInterface",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|