mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-cppkafka.git
synced 2026-01-27 10:22:42 +00:00
Boost not provide pkg-config file, so if execute 'pkg-config --exist cppkafka' command with boost dependency, user always gets non-zero return. And PKG_SEARCH_MODULE in cmake use the command to check the status of cppkafka. The boost dependency should be removed for general usage can be works.
15 lines
447 B
PkgConfig
15 lines
447 B
PkgConfig
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=${prefix}
|
|
libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@
|
|
sharedlibdir=${prefix}/@CMAKE_INSTALL_LIBDIR@
|
|
includedir=${prefix}/include
|
|
|
|
Name: cppkafka
|
|
Url: https://github.com/mfontanini/cppkafka
|
|
Description: C++ wrapper library on top of RdKafka
|
|
Version: @CPPKAFKA_VERSION@
|
|
Requires:
|
|
Requires.private: rdkafka >= 0.9.4
|
|
Libs: -L${libdir} -L${sharedlibdir} -lcppkafka
|
|
Cflags: -I${includedir} -I${includedir}/cppkafka
|