diff options
author | Oz Linden <oz@lindenlab.com> | 2014-03-19 17:30:07 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-03-19 17:30:07 -0400 |
commit | 776aadf4ef65681084268c3866058172c89b4259 (patch) | |
tree | 319c598d928b244047aabce1a8833f516f03b728 /indra/cmake/Audio.cmake | |
parent | cb2bd577099f87881d467249cac679200bb367f0 (diff) |
OPEN-199: replace the confusing STANDALONE switch with USESYSTEMLIBS
Diffstat (limited to 'indra/cmake/Audio.cmake')
-rwxr-xr-x | indra/cmake/Audio.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/cmake/Audio.cmake b/indra/cmake/Audio.cmake index d23bc2f9c6..876b7f82a8 100755 --- a/indra/cmake/Audio.cmake +++ b/indra/cmake/Audio.cmake @@ -1,13 +1,13 @@ # -*- cmake -*- include(Prebuilt) -if (STANDALONE) +if (USESYSTEMLIBS) include(FindPkgConfig) pkg_check_modules(OGG REQUIRED ogg) pkg_check_modules(VORBIS REQUIRED vorbis) pkg_check_modules(VORBISENC REQUIRED vorbisenc) pkg_check_modules(VORBISFILE REQUIRED vorbisfile) -else (STANDALONE) +else (USESYSTEMLIBS) use_prebuilt_binary(ogg-vorbis) set(VORBIS_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include) set(VORBISENC_INCLUDE_DIRS ${VORBIS_INCLUDE_DIRS}) @@ -32,7 +32,7 @@ else (STANDALONE) set(VORBISENC_LIBRARIES vorbisenc) set(VORBISFILE_LIBRARIES vorbisfile) endif (WINDOWS) -endif (STANDALONE) +endif (USESYSTEMLIBS) link_directories( ${VORBIS_LIBRARY_DIRS} |