Skip to content Skip to sidebar Skip to footer

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

Building the libs:

  1. download and install Community Edition with package "Individual components">"C++ CMake tools for Windows"
  2. download latest ZeroMQ release as .zip
  3. unzip
  4. open Visual Studio
  5. choose "Open a local folder" and select ZeroMQ folder
  6. right click CMakeLists.txt > CMake settings for ZeroMQ > x86-Release
  7. above the project tree select "CMake targets view" from "Toggle between Solution and Folder views"
  8. right click ZeroMQ Project > Build All
  9. 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"