Skip to content
Snippets Groups Projects
Commit e50fe76c authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

Add work around for broken DOOCS pkg-config files breaking linkage

Search explicitly for libgul14 which is required by DOOCS libraries
parent 076b16aa
No related branches found
No related tags found
No related merge requests found
...@@ -76,6 +76,10 @@ endif() ...@@ -76,6 +76,10 @@ endif()
set(ENV{PKG_CONFIG_PATH} $ENV{PKG_CONFIG_PATH}:/export/doocs/lib/pkgconfig) set(ENV{PKG_CONFIG_PATH} $ENV{PKG_CONFIG_PATH}:/export/doocs/lib/pkgconfig)
message("Using PKG_CONFIG_PATH=$ENV{PKG_CONFIG_PATH}") message("Using PKG_CONFIG_PATH=$ENV{PKG_CONFIG_PATH}")
# WORK AROUND FOR BROKEN DOOCS PKG CONFIG FILES: Search for libgul14 which is required by DOOCS libraries
list(APPEND DOOCS_FIND_COMPONENTS libgul14)
# END OF WORK AROUND
pkg_check_modules(DOOCS REQUIRED ${DOOCS_FIND_COMPONENTS}) pkg_check_modules(DOOCS REQUIRED ${DOOCS_FIND_COMPONENTS})
string(REPLACE ";" " " DOOCS_CFLAGS "${DOOCS_CFLAGS}") string(REPLACE ";" " " DOOCS_CFLAGS "${DOOCS_CFLAGS}")
......
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