PageRenderTime 13ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/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
Possible License(s): LGPL-2.1
  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)