summaryrefslogtreecommitdiff
path: root/indra/cmake/FMODEX.cmake
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2014-04-22 16:03:35 -0400
committerOz Linden <oz@lindenlab.com>2014-04-22 16:03:35 -0400
commitd00d37d23b68037fed8eeeffe21a87f7597086c3 (patch)
tree2ce3ca6ce4038ab967277ebba1ca4b8a599c50e5 /indra/cmake/FMODEX.cmake
parent6c8bddca3d5a790934535fdd6f176e28d181d76a (diff)
parent776aadf4ef65681084268c3866058172c89b4259 (diff)
merge changes for OPEN-199
Diffstat (limited to 'indra/cmake/FMODEX.cmake')
-rw-r--r--indra/cmake/FMODEX.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/cmake/FMODEX.cmake b/indra/cmake/FMODEX.cmake
index 163260137b..4981bfb7a6 100644
--- a/indra/cmake/FMODEX.cmake
+++ b/indra/cmake/FMODEX.cmake
@@ -4,17 +4,17 @@
# When building using proprietary binaries though (i.e. having access to LL private servers),
# we always build with FMODEX.
# Open source devs should use the -DFMODEX:BOOL=ON then if they want to build with FMOD, whether
-# they are using STANDALONE or not.
+# they are using USESYSTEMLIBS or not.
if (INSTALL_PROPRIETARY)
set(FMODEX ON CACHE BOOL "Using FMOD Ex sound library.")
endif (INSTALL_PROPRIETARY)
if (FMODEX)
- if (STANDALONE)
+ if (USESYSTEMLIBS)
# In that case, we use the version of the library installed on the system
set(FMODEX_FIND_REQUIRED ON)
include(FindFMODEX)
- else (STANDALONE)
+ else (USESYSTEMLIBS)
if (FMODEX_LIBRARY AND FMODEX_INCLUDE_DIR)
# If the path have been specified in the arguments, use that
set(FMODEX_LIBRARIES ${FMODEX_LIBRARY})
@@ -41,6 +41,6 @@ if (FMODEX)
set(FMODEX_LIBRARIES ${FMODEX_LIBRARY})
set(FMODEX_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include/)
endif (FMODEX_LIBRARY AND FMODEX_INCLUDE_DIR)
- endif (STANDALONE)
+ endif (USESYSTEMLIBS)
endif (FMODEX)