An open API service indexing awesome lists of open source software.

https://github.com/qoretechnologies/module-zmq

Qore ZeroMQ module
https://github.com/qoretechnologies/module-zmq

qore zeromq zmq

Last synced: 5 months ago
JSON representation

Qore ZeroMQ module

Awesome Lists containing this project

README

          

# Qore ZeroMQ module

## Requirements

This module requires ZMQ library version 4.2.2+ and CZMQ library version 4.0.2+.

## Building

```
cd module-zmq
mkdir build
cd build
cmake ..
make
make install
```

Optionally, if the ZMQ or CZMQ libraries are installed in non-standard location, you can use environment variables `ZMQ_DIR` and `CZMQ_DIR` so that cmake can find the libraries:

```
export ZMQ_DIR=/path/to/zmq
export CZMQ_DIR=/path/to/czmq
cmake ..
```