czmq

High-level C binding for ZeroMQ messaging library

brewmacoslinux
Try with needOr install directly
Source

About

High-level C binding for ZeroMQ

Examples

check if czmq is installed and get version info$ pkg-config --modversion libczmq
compile a C program that uses czmq library$ gcc myprogram.c -o myprogram $(pkg-config --cflags --libs libczmq)
view czmq header files location on system$ pkg-config --cflags libczmq
verify czmq shared library is installed$ pkg-config --list-all | grep czmq
link czmq library when building from source$ gcc myapp.c -o myapp -lczmq -lzmq