I\'m just starting to learn how to work with zeromq libraries and using them in different C++ projects. The sample code that I wrote (actually copied from there tutorials)is thi
This works as well
cmake_minimum_required(VERSION 3.6) project(test) add_executable(c main.cpp) target_link_libraries(c zmq)