Qt:如何告诉 Qmake 在 Visual Studio 项目中包含 ws2_32
大家好 我在 Qt 应用程序中使用一些第三方库
但我喜欢 *.pro 文件和 QMAKE 作为默认文件。
我如何告诉 qmake (在 *.pro 文件中写入内容)将 windows ws2_32 套接字库包含在我的 Visual Studio 项目中
在包含库目录中?
Hello all
im using some third party lib in side Qt application
but i like the *.pro file and the QMAKE to be the default .
how can i tell qmake (what to write in the *.pro file ) to include in my visual studio project the windows ws2_32 socket lib
in the include lib dir ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在 .pro 文件中添加
QMAKE_LIBS += ws2_32.lib
。Try to add
QMAKE_LIBS += ws2_32.lib
in your .pro file.