Я получаю следующую ошибку:
"Ошибка 1, ошибка LNK2019: неразрешенный внешний символ _ imp _zmq_init, указанный в функции" public: __thiscall zmq :: context_t :: context_t (int) "(?? 0context_t @ zmq @@ QAE @ H @Z) ZeroMQPlay.obj ZeroMQPlay "
С этим кодом C ++:
include "stdafx.h"
include <zmq.hpp>
int _tmain(int argc, _TCHAR* argv[])
{
zmq::context_t ctx(1);
return 0;
}
Heelp!