From d89d6b40ba1828d321168b1df11b6df4e8069418 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Fri, 10 Feb 2017 14:13:25 +0100 Subject: [PATCH] Add pkgconfig file generating support on unix os to cmake build system. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=99752 Reviewed-by: Simon McVittie --- cmake/CMakeLists.txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 2c397d2..c41fb3c 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -635,3 +635,26 @@ add_custom_target(help-options cmake -LH WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) + +# +# create pkgconfig file +# +if(UNIX) + set(PLATFORM_LIBS pthread ${LIBRT}) + include(FindPkgConfig QUIET) + if(PKG_CONFIG_FOUND) + # convert lists of link libraries into -lstdc++ -lm etc.. + foreach(LIB ${CMAKE_C_IMPLICIT_LINK_LIBRARIES} ${PLATFORM_LIBS}) + set(LIBDBUS_LIBS "${LIBDBUS_LIBS} -l${LIB}") + endforeach() + set(bindir ${EXPANDED_BINDIR}) + set(libdir ${EXPANDED_LIBDIR}) + set(includedir ${EXPANDED_INCLUDEDIR}) + set(sysconfdir ${EXPANDED_SYSCONFDIR}) + set(datadir ${EXPANDED_DATADIR}) + set(datarootdir ${EXPANDED_DATADIR}) + set(dbus_daemondir ${DBUS_DAEMONDIR}) + configure_file(../dbus-1.pc.in ${CMAKE_BINARY_DIR}/dbus-1.pc @ONLY) + install(FILES ${CMAKE_BINARY_DIR}/dbus-1.pc DESTINATION lib/pkgconfig) + endif() +endif() -- 2.7.4