summaryrefslogtreecommitdiff
path: root/indra/cmake/LLPlugin.cmake
blob: 7ee404b9bdfa68fc6d398c48a2549b4449fc84d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- 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)