/indra/cmake/ViewerMiscLibs.cmake

https://bitbucket.org/lindenlab/viewer-beta/ · CMake · 16 lines · 13 code · 2 blank · 1 comment · 3 complexity · fd30efc18f8c843b7c666c1f084ed3dc MD5 · raw file

  1. # -*- cmake -*-
  2. include(Prebuilt)
  3. if (NOT STANDALONE)
  4. use_prebuilt_binary(libuuid)
  5. use_prebuilt_binary(slvoice)
  6. use_prebuilt_binary(fontconfig)
  7. endif(NOT STANDALONE)
  8. if(VIEWER AND NOT STANDALONE)
  9. if(EXISTS ${CMAKE_SOURCE_DIR}/newview/res/have_artwork_bundle.marker)
  10. message(STATUS "We seem to have an artwork bundle in the tree - brilliant.")
  11. else(EXISTS ${CMAKE_SOURCE_DIR}/newview/res/have_artwork_bundle.marker)
  12. message(FATAL_ERROR "Didn't find an artwork bundle - this needs to be downloaded separately and unpacked into this tree. You can probably get it from the same place you got your viewer source. Thanks!")
  13. endif(EXISTS ${CMAKE_SOURCE_DIR}/newview/res/have_artwork_bundle.marker)
  14. endif(VIEWER AND NOT STANDALONE)