diff options
| author | Rye <rye@alchemyviewer.org> | 2025-10-20 13:10:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-20 13:10:19 -0400 |
| commit | 41e9595522c71534219158609e97186e4bfeac69 (patch) | |
| tree | 773cc9ebee97eb889618c41c73b125d04301cc8d /indra/llprimitive | |
| parent | c847a5eaac635604a2490872c0ee8cc947273cf5 (diff) | |
Rework new convex decomp into a physicsextensions stub package and fix havok and havok_tpv builds for darwin universal to utilize new vhacd stub (#4858)
Diffstat (limited to 'indra/llprimitive')
| -rw-r--r-- | indra/llprimitive/CMakeLists.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/indra/llprimitive/CMakeLists.txt b/indra/llprimitive/CMakeLists.txt index 9e90314a51..ff0cad58d6 100644 --- a/indra/llprimitive/CMakeLists.txt +++ b/indra/llprimitive/CMakeLists.txt @@ -65,15 +65,18 @@ target_link_libraries(llprimitive llxml llcharacter llrender - llphysicsextensions_impl ll::colladadom ll::glm ) -if (TARGET llconvexdecomposition) +if (HAVOK OR HAVOK_TPV) target_link_libraries(llprimitive - llconvexdecomposition - ) + llphysicsextensions_impl + ) +else() + target_link_libraries(llprimitive + llphysicsextensionsos + ) endif () #add unit tests |
