diff options
author | Merov Linden <merov@lindenlab.com> | 2010-10-22 15:17:49 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2010-10-22 15:17:49 -0700 |
commit | 01b01d94f42a8b4a5bf1cb9a5fb3abfbd97a1bf4 (patch) | |
tree | d48f85d5829f5f3047953eadcf1a2429e509f0ac | |
parent | d6be4f210bd5dd15338750fa2559a8a3788b275f (diff) | |
parent | ec0f2b831eab0694e333f8defb795a986f921a55 (diff) |
STORM-406 : merge with viewer-development
-rw-r--r-- | doc/contributions.txt | 1 | ||||
-rw-r--r-- | indra/cmake/FMOD.cmake | 6 | ||||
-rw-r--r-- | indra/llaudio/CMakeLists.txt | 5 |
3 files changed, 9 insertions, 3 deletions
diff --git a/doc/contributions.txt b/doc/contributions.txt index 16327d0917..3502f4f8b9 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -174,6 +174,7 @@ Boroondas Gupte VWR-233 VWR-20583 VWR-20891 + VWR-23455 WEB-262 Bulli Schumann CT-218 diff --git a/indra/cmake/FMOD.cmake b/indra/cmake/FMOD.cmake index 96434e38fa..dcf44cd642 100644 --- a/indra/cmake/FMOD.cmake +++ b/indra/cmake/FMOD.cmake @@ -7,8 +7,10 @@ if (FMOD) set(FMOD_FIND_REQUIRED ON) include(FindFMOD) else (STANDALONE) - include(Prebuilt) - use_prebuilt_binary(fmod) + if (INSTALL_PROPRIETARY) + include(Prebuilt) + use_prebuilt_binary(fmod) + endif (INSTALL_PROPRIETARY) if (WINDOWS) set(FMOD_LIBRARY fmod) diff --git a/indra/llaudio/CMakeLists.txt b/indra/llaudio/CMakeLists.txt index e869b9717c..21ec622819 100644 --- a/indra/llaudio/CMakeLists.txt +++ b/indra/llaudio/CMakeLists.txt @@ -14,7 +14,6 @@ include(LLVFS) include_directories( ${LLAUDIO_INCLUDE_DIRS} - ${FMOD_INCLUDE_DIR} ${LLCOMMON_INCLUDE_DIRS} ${LLMATH_INCLUDE_DIRS} ${LLMESSAGE_INCLUDE_DIRS} @@ -45,6 +44,10 @@ set(llaudio_HEADER_FILES ) if (FMOD) + include_directories( + ${FMOD_INCLUDE_DIR} + ) + list(APPEND llaudio_SOURCE_FILES llaudioengine_fmod.cpp lllistener_fmod.cpp |