/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
- # -*- cmake -*-
- set(LLPLUGIN_INCLUDE_DIRS
- ${LIBS_OPEN_DIR}/llplugin
- )
- if (LINUX)
- # In order to support using ld.gold on linux, we need to explicitely
- # specify all libraries that llplugin uses.
- set(LLPLUGIN_LIBRARIES llplugin pthread)
- else (LINUX)
- set(LLPLUGIN_LIBRARIES llplugin)
- endif (LINUX)