我想在我的 QT C++ 应用程序中使用 Poco ( pocoproject.org ) 库。而且我知道如何在 UNIX 或 cygwin 环境中编译 poco。但我想要的是直接在 Windows 下的 QT 中编译 poco。所以我该怎么做 ?非常感谢。
问问题
515 次
1 回答
1
I don't think Poco libraries have something special, so basically you will have to compile Poco with the same compiler you use Qt with (MinGW or VC++), you can't "compile it in Qt" (because Qt is a framework not an compiler) and after you built it you add it to the qmake projects using INCLUDEPATH and LIBS
于 2013-05-31T11:08:51.237 回答