/indra/cmake/LLPlugin.cmake

https://bitbucket.org/lindenlab/viewer-beta/ · CMake · 14 lines · 8 code · 3 blank · 3 comment · 2 complexity · 3b286157bc9dfa0b625229e567fdb73f MD5 · raw file

  1. # -*- cmake -*-
  2. set(LLPLUGIN_INCLUDE_DIRS
  3. ${LIBS_OPEN_DIR}/llplugin
  4. )
  5. if (LINUX)
  6. # In order to support using ld.gold on linux, we need to explicitely
  7. # specify all libraries that llplugin uses.
  8. set(LLPLUGIN_LIBRARIES llplugin pthread)
  9. else (LINUX)
  10. set(LLPLUGIN_LIBRARIES llplugin)
  11. endif (LINUX)