mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-18 01:13:55 +00:00
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
262 B
PkgConfig
12 lines
262 B
PkgConfig
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
libdir=@libdir@
|
|
includedir=@includedir@
|
|
|
|
Name: libzmq
|
|
Description: 0MQ c++ library
|
|
Version: @VERSION@
|
|
Libs: -L${libdir} -lzmq
|
|
Libs.private: -lstdc++ @pkg_config_libs_private@
|
|
Cflags: -I${includedir} @pkg_config_defines@
|