mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-23 18:42:20 +01:00
06d810b4c9
Solution: use only Libs.private to avoid breaking application builds. Even though Requires.private are supposed to be parsed only if pkg-config is called with --static, the --cflags parameter is enough to trigger the parsing, causing build failures for applications that do not (and should not) depend on libzmq's dependencies.
12 lines
332 B
CMake
12 lines
332 B
CMake
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=${prefix}
|
|
libdir=${prefix}/lib
|
|
includedir=${prefix}/include
|
|
|
|
Name: libzmq
|
|
Description: 0MQ c++ library
|
|
Version: @ZMQ_VERSION_MAJOR@.@ZMQ_VERSION_MINOR@.@ZMQ_VERSION_PATCH@
|
|
Libs: -L${libdir} -lzmq
|
|
Libs.private: -lstdc++ @pkg_config_libs_private@
|
|
Cflags: -I${includedir} @pkg_config_defines@
|