Files
jimmy andrews 5c57892f20 Add a geometry processing command line program to enable command line execution of geometry processing algorithms
+ add navigation-driven approximate convex decomposition as the first supported algorithm
#rb lonnie.li

[CL 33522576 by jimmy andrews in ue5-main branch]
2024-05-08 14:58:04 -04:00

24 lines
698 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class MeshFileUtils : ModuleRules
{
public MeshFileUtils(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
// Note: The module purposefully doesn't have a dependency on CoreUObject.
// If possible, we would like avoid having UObjects in GeometryProcessing
// modules to keep the door open for writing standalone command-line programs
// (which won't have UObject garbage collection).
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"GeometryCore"
}
);
UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}