mirror of
https://github.com/zeromq/libzmq.git
synced 2025-02-03 15:47:16 +01:00
6d9411607d
Solution: add dependencies, if necessary, to the .private Libs and Requires field of the pkgconfig file at build time. This way pkg-config --static --libs libzmq will correctly print dependencies if they were used to build the static libzmq.a library.
13 lines
310 B
PkgConfig
13 lines
310 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@
|
|
Requires.private: @pkg_config_requires_private@
|
|
Cflags: -I${includedir} @pkg_config_defines@
|