Getting Zeromq Up And Running On Windows 10
I'm trying to get ZeroMQ up and running on Windows 10, my aim to use ZeroMQ/flatbuffers to exchange structured messages between a Java process and a Python process. I'm find the Ze
Solution 1:
There are faster options
- Jeromq pure Java ZeroMQ
- use linux sub system for Windows 10 with Ubuntu
Building the libs:
- download and install Community Edition with package "Individual components">"C++ CMake tools for Windows"
- download latest ZeroMQ release as
.zip
- unzip
- open Visual Studio
- choose "Open a local folder" and select ZeroMQ folder
- right click CMakeLists.txt > CMake settings for ZeroMQ > x86-Release
- above the project tree select "CMake targets view" from "Toggle between Solution and Folder views"
- right click ZeroMQ Project > Build All
- your user profile folder will contain a folder CMakeBuilds which contains the build results
Post a Comment for "Getting Zeromq Up And Running On Windows 10"