visual studio 2012 - Using ZeroMQ in VS2012 C++ -
so installed zeromq in python(and it's working) can't in visual studio 2012 c++. downloaded windows installer, installed , searched in installation folder is:
-an "include" folder 2 header files copied vs include
-a "lib" folder 3 lib files , 3 pdb files copied vs lib
-a "bin" folder copied vs bin
after this, tried use zmq::context_t... , zmq::socket_t... couldn't it, said zmq had class in order me use namespace. tried add libraries dependencies , still couldn't it.
so, after, copied this zmqhpp.h file imported other header file want create socket. says "1>pythonplugin2.obj : error lnk2019: unresolved external symbol __imp__zmq_close referenced in function "public: void __thiscall zmq::socket_t::close(void)" (?close@socket_t@zmq@@qaexxz)" , bunch of other "unresolved" problems(12 more exact)
what's happening guys?
i'm on windows 7 x-64 , on visual studio 2012 c++
thank guys
edit: meanwhile tried thing. instead of windows installer downloaded .zip. followed every step(i had build msvc10 because msvc wouldn't build) , added library libzmq_d.lib dependencies. still error "zmq not class or namespace name"
edit2: tried this also. nothing...
it may search directories linking don't include c dll libzmq.dll
. verify isn't problem.
Comments
Post a Comment