diff options
| author | callum_linden <none@none> | 2013-01-23 13:28:54 -0800 | 
|---|---|---|
| committer | callum_linden <none@none> | 2013-01-23 13:28:54 -0800 | 
| commit | e503acf7b8f6721a4801e2c887b50ce67c0d307d (patch) | |
| tree | 943575a28a99b95065ebd672a97eeb96ce216ce1 /indra/llaudio | |
| parent | fa12377b0de935b2a09ee46f5195cfed96dbe557 (diff) | |
Fix llaudio CMake file to not use FMOD - only FMODEX
Diffstat (limited to 'indra/llaudio')
| -rw-r--r-- | indra/llaudio/CMakeLists.txt | 9 | 
1 files changed, 2 insertions, 7 deletions
| diff --git a/indra/llaudio/CMakeLists.txt b/indra/llaudio/CMakeLists.txt index e404cfc10e..b2d7b7c911 100644 --- a/indra/llaudio/CMakeLists.txt +++ b/indra/llaudio/CMakeLists.txt @@ -5,13 +5,8 @@ project(llaudio)  include(00-Common)  include(Audio)  include(LLAudio) -if (FMODEX) -  include(FMODEX) -  set(FMOD OFF) -endif (FMODEX) -if (NOT FMODEX) -  include(FMOD) -endif (NOT FMODEX) +include(FMODEX) +set(FMOD OFF)  include(OPENAL)  include(LLCommon)  include(LLMath) | 
