I am trying to start a ZeroMQ developing in c++, using Visual Studio 2017, I've just downloaded libzmq-vc141.4.2.2
, using NuGet,
but when I try to run the program I receive:
Error LNK2019 unresolved external symbol __imp__zmq_ctx_new referenced in function _main ZMQ C:\Users\Ledx\Documents\Visual Studio 2017\Projects\ZMQ\ZMQ\main.obj 1
In gcc you write -lzmq
for linking, but what to do in Visual Studio?