zmqpp
zmqpp copied to clipboard
visual studio 2015 found?
CMake Error at cmake/macros/FindZMQ.cmake:80 (message): Could not find ZMQ libraries/headers! Please install ZMQ with libraries and headers Call Stack (most recent call first): src/server/ipc/CMakeLists.txt:11 (find_package)
Hello, Sorry I rarely develop on Windows I won't be able to help you. Apparently the CMake script isn't able to find libzmq. Are you sure libzmq is installed?
For anyone that stumbles across this in the future, I successfully generated build files for VS2015 by setting a directory for ZEROMQ_LIB_DIR && ZEROMQ_INCLUDE_DIR in the CMakeLists.txt file. The LIB_DIR should include zmq.lib & zmq_static.lib. The INCLUDE_DIR should include zmq.h.
I used the CMake gui for windows, i was able to manually edit the configuration before generating the build projects. Hope this helps.