summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--indra/cmake/GLM.cmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/cmake/GLM.cmake b/indra/cmake/GLM.cmake
index e1f05f9835..9cf410d9c3 100644
--- a/indra/cmake/GLM.cmake
+++ b/indra/cmake/GLM.cmake
@@ -4,7 +4,10 @@ include(Prebuilt)
add_library( ll::glm INTERFACE IMPORTED )
if (USESYSTEMLIBS)
- find_package( glm REQUIRED )
+ if (NOT LINUX)
+ find_package( glm REQUIRED )
+ endif ()
+ return ()
else ()
use_system_binary( glm )
use_prebuilt_binary(glm)