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
- Host: GitHub
- URL: https://github.com/qoretechnologies/module-zmq
- Owner: qoretechnologies
- License: mit
- Created: 2017-02-07T11:30:39.000Z (over 9 years ago)
- Default Branch: develop
- Last Pushed: 2025-12-29T05:39:20.000Z (5 months ago)
- Last Synced: 2026-01-01T02:10:50.491Z (5 months ago)
- Topics: qore, zeromq, zmq
- Language: C++
- Homepage:
- Size: 272 KB
- Stars: 0
- Watchers: 14
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 ..
```