Files
UnrealEngineUWP/Engine/Source/Programs/GeometryProcessing/GeometryProcessing.Build.cs
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

30 lines
683 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class GeometryProcessing : ModuleRules
{
public GeometryProcessing(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.Add("Launch");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"Projects",
"GeometryCore",
"GeometryAlgorithms",
"DynamicMesh",
"MeshFileUtils",
}
);
// to link with CoreUObject module:
// PrivateDependencyModuleNames.Add("CoreUObject");
// to enable LLM tracing:
// GlobalDefinitions.Add("LLM_ENABLED_IN_CONFIG=1");
// GlobalDefinitions.Add("UE_MEMORY_TAGS_TRACE_ENABLED=1");
}
}