Skip to content
Snippets Groups Projects
Commit 1f5d66e7 authored by Jens Georg's avatar Jens Georg
Browse files

FindDOOCS: Force linking against libtinemt

This is a work-around for libDOOCSapi linking against it but expecting
/export/doocs/lib to be in the linker search path (not using rpath)

May be reverted once/if doocs fixes this
parent 6d1898d2
No related branches found
Tags 02.04.00
No related merge requests found
......@@ -73,6 +73,10 @@ include(FindPkgConfig)
if(DEFINED DOOCS_DIR)
set(ENV{PKG_CONFIG_PATH} $ENV{PKG_CONFIG_PATH}:${DOOCS_DIR}/pkgconfig)
endif()
# Work-around for missing rpath on libDOOCSClient - explicitly link against libtine
list(APPEND DOOCS_FIND_COMPONENTS timemt)
set(ENV{PKG_CONFIG_PATH} $ENV{PKG_CONFIG_PATH}:/export/doocs/lib/pkgconfig)
message("Using PKG_CONFIG_PATH=$ENV{PKG_CONFIG_PATH}")
pkg_check_modules(DOOCS REQUIRED ${DOOCS_FIND_COMPONENTS})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment