ofxZmq
ofxZmq copied to clipboard
Cannot find zmq.hpp
Appears to require https://github.com/zeromq/cppzmq?
After properly installing zmq you need to do the following in your xcode project:
- In Xcode update your 'Header Search Paths’ with /usr/local/include
- In Xcode update your 'Library Search Paths’ with /usr/local/lib
- In Xcode update you 'Other Linker Flags’ with -lzmq
Also see my post on working with zeroMQ in C++ and Python
I still have this issue, despite following the example.