2019-12-27 09:26:59 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-09-12 13:55:17 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2021-07-29 20:08:48 -04:00
|
|
|
public class MeshModelingToolsExp : ModuleRules
|
2019-09-12 13:55:17 -04:00
|
|
|
{
|
2021-07-29 20:08:48 -04:00
|
|
|
public MeshModelingToolsExp(ReadOnlyTargetRules Target) : base(Target)
|
2019-09-12 13:55:17 -04:00
|
|
|
{
|
|
|
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
|
|
|
|
|
|
PublicIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
// ... add public include paths required here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2021-05-13 19:06:22 -04:00
|
|
|
PublicIncludePathModuleNames.AddRange(
|
2019-09-12 13:55:17 -04:00
|
|
|
new string[] {
|
2021-05-13 19:06:22 -04:00
|
|
|
"AnimationCore", // For the BoneWeights.h include
|
2019-09-12 13:55:17 -04:00
|
|
|
}
|
2021-05-13 19:06:22 -04:00
|
|
|
);
|
|
|
|
|
|
2019-09-12 13:55:17 -04:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
// These dependencies were commented out when we split out MeshModelingToolsEditorOnly
|
|
|
|
|
// Many of them are editor only and should not be depended on here. If you re-add any
|
|
|
|
|
// dependent modules, please confirm by "launching" or packaging that you are not introducing
|
|
|
|
|
// editor dependencies
|
|
|
|
|
//
|
|
|
|
|
//"MeshDescription",
|
|
|
|
|
//"ProxyLODMeshReduction", // currently required to be public due to IVoxelBasedCSG API
|
|
|
|
|
|
|
|
|
|
"Core",
|
|
|
|
|
"Eigen",
|
|
|
|
|
"InteractiveToolsFramework",
|
2021-05-21 01:04:38 -04:00
|
|
|
"GeometryCore",
|
2021-06-22 12:11:21 -04:00
|
|
|
"GeometryFramework",
|
2019-11-01 20:48:07 -04:00
|
|
|
"GeometryAlgorithms",
|
2019-09-12 13:55:17 -04:00
|
|
|
"DynamicMesh",
|
|
|
|
|
"MeshConversion",
|
2020-01-27 20:11:15 -05:00
|
|
|
"MeshDescription",
|
2021-10-28 19:47:45 -04:00
|
|
|
"MeshModelingTools",
|
2020-01-27 20:11:15 -05:00
|
|
|
"StaticMeshDescription",
|
2021-05-13 19:06:22 -04:00
|
|
|
"SkeletalMeshDescription",
|
2019-09-12 13:55:17 -04:00
|
|
|
"ModelingComponents",
|
|
|
|
|
"ModelingOperators",
|
|
|
|
|
|
|
|
|
|
// ... add other public dependencies that you statically link with here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
// These dependencies were commented out when we split out MeshModelingToolsEditorOnly
|
|
|
|
|
// Many of them are editor only and should not be depended on here. If you re-add any
|
|
|
|
|
// dependent modules, please confirm by "launching" or packaging that you are not introducing
|
|
|
|
|
// editor dependencies
|
|
|
|
|
//
|
|
|
|
|
//"RenderCore",
|
|
|
|
|
//"RHI",
|
|
|
|
|
//"MeshUtilities", // temp for saving mesh asset
|
|
|
|
|
//"UnrealEd",
|
|
|
|
|
//"MeshBuilder",
|
|
|
|
|
//"MeshDescriptionOperations",
|
|
|
|
|
//"MeshUtilitiesCommon",
|
2021-03-23 21:26:05 -04:00
|
|
|
//"MeshReductionInterface", // for UE standard simplification
|
2019-09-12 13:55:17 -04:00
|
|
|
//"ProxyLODMeshReduction", // for mesh merging voxel-based csg
|
|
|
|
|
//"Slate",
|
|
|
|
|
//"SlateCore",
|
|
|
|
|
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
2020-10-29 13:38:15 -04:00
|
|
|
"RenderCore",
|
2019-09-12 13:55:17 -04:00
|
|
|
"ModelingOperators",
|
|
|
|
|
"InputCore",
|
2021-05-13 19:06:22 -04:00
|
|
|
"PhysicsCore",
|
|
|
|
|
|
2019-09-12 13:55:17 -04:00
|
|
|
// ... add private dependencies that you statically link with here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
// ... add any modules that your module loads dynamically here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|