From 630a1197d219e57098236913bbd464d6b03f2a6d Mon Sep 17 00:00:00 2001 From: Erik Kundiman Date: Sun, 28 Jul 2024 08:26:38 +0800 Subject: Make system GLM found I had to use find_package here directly because somehow our "different" use_system_binary wouldn't set glm_FOUND to true, even though CMake found the package. --- indra/cmake/GLM.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/indra/cmake/GLM.cmake b/indra/cmake/GLM.cmake index 84b155f6c5..e1f05f9835 100644 --- a/indra/cmake/GLM.cmake +++ b/indra/cmake/GLM.cmake @@ -3,5 +3,9 @@ include(Prebuilt) add_library( ll::glm INTERFACE IMPORTED ) +if (USESYSTEMLIBS) + find_package( glm REQUIRED ) +else () use_system_binary( glm ) use_prebuilt_binary(glm) +endif () -- cgit v1.2.3