Skip to content
Snippets Groups Projects
LLPlugin.cmake 322 B
Newer Older
# -*- 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)
    set(LLPLUGIN_LIBRARIES llplugin)