From 603ad5a4f2450f67d2d253f199b3f6a216b30248 Mon Sep 17 00:00:00 2001
From: Nicky <nicky.dasmijn@gmail.com>
Date: Thu, 7 Apr 2022 02:34:32 +0200
Subject: OpenAL is not avaiable for OSX, error out in case someone selects ot.

---
 indra/cmake/OPENAL.cmake | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

(limited to 'indra')

diff --git a/indra/cmake/OPENAL.cmake b/indra/cmake/OPENAL.cmake
index ab2d258a12..a5058b4bc3 100644
--- a/indra/cmake/OPENAL.cmake
+++ b/indra/cmake/OPENAL.cmake
@@ -12,6 +12,7 @@ if (OPENAL)
   if( TARGET openal::openal )
     return()
   endif()
+
   create_target( openal::openal )
   set_target_include_dirs( openal::openal "${LIBS_PREBUILT_DIR}/include/AL")
 
@@ -26,13 +27,15 @@ if (OPENAL)
 
   if(WINDOWS)
     set_target_libraries( openal::openal
-      OpenAL32
-      alut
-    )
-  else()
+            OpenAL32
+            alut
+            )
+  elseif(LINUX)
     set_target_libraries( openal::openal
-      openal
-      alut
-    )
+            openal
+            alut
+            )
+  else()
+    message(FATAL_ERROR "OpenAL is not available for this platform")
   endif()
 endif (OPENAL)
-- 
cgit v1.2.3