https://github.com/tgfrerer/ofxzeromq
ZeroMQ wrapper for openFrameworks, with libs for vs, osx, rpi
https://github.com/tgfrerer/ofxzeromq
Last synced: about 1 month ago
JSON representation
ZeroMQ wrapper for openFrameworks, with libs for vs, osx, rpi
- Host: GitHub
- URL: https://github.com/tgfrerer/ofxzeromq
- Owner: tgfrerer
- Created: 2014-10-21T18:02:56.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-21T18:13:55.000Z (almost 12 years ago)
- Last Synced: 2025-11-10T12:22:29.988Z (9 months ago)
- Language: C++
- Size: 5.7 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Attention VS 2012 users
Make sure to add the .props files for debug and release to your visual studio property sheets.
These are located under:
ofxZeromq\libs\zeromq\lib\vs
The property sheets will make sure that the preprocessor definition ZMQ_STATIC is set, otherwise the linker will not be able to correctly link your app to the static libzmq.lib or libzmqd.lib.
See also: http://stackoverflow.com/questions/10367678/linking-to-a-static-0mq-library-in-vs
## Compilation recipe
This was compiled on the Raspberry PI using the following steps:
curl http://download.zeromq.org/zeromq-4.0.4.tar.gz -o
tar xf zeromq-4.0.4.tar.gz
cd zeromq-4.0.4
mkdir -p /tmp/build
./configure --enable-static --prefix=/tmp/build
make
make install
cd /tmp/build/lib/
ls libzmq.a