0

I get the following error:

"Error 1 error LNK2019: unresolved external symbol _imp_zmq_init referenced in function "public: __thiscall zmq::context_t::context_t(int)" (??0context_t@zmq@@QAE@H@Z) ZeroMQPlay.obj ZeroMQPlay"

With this C++ code:

include "stdafx.h"
include <zmq.hpp>

int _tmain(int argc, _TCHAR* argv[])
{
 zmq::context_t ctx(1);

 return 0;
}

Heelp!

4

2 回答 2

1

您必须告诉链接器有关 ZeroMQ 库的信息。如果您已将 ZeroMQ 构建为 VS 项目,最简单的方法是将 ZeroMQ 项目添加到包含您自己的项目的解决方案中,并将您的项目标记为依赖于它。

于 2010-12-20T01:08:25.403 回答
1

Afaiu,您应该首先构建 zeromq 库,并将其与您的应用程序链接。

于 2010-12-20T00:39:59.287 回答