Qt (Creator) with WinSocks (ws2_32)

后端 未结 4 1967
庸人自扰
庸人自扰 2020-12-11 17:29

I want to use an older code-fragment in my Qt-project, which is using WinSocks.
I created my program with Qt Creator and I don\'t know, how I can link to the ws2_32-Libr

相关标签:
4条回答
  • 2020-12-11 17:52

    You need too to add the path to the headers in order to add the function's signatures of a dynamic library.

    Use the INCLUDEPATH variable into the .pro file.

    0 讨论(0)
  • 2020-12-11 18:00

    ok, when you know it, it's really simple.The Qt-SDK comes with a WinSock2-Library, called libws2_32.a.The only thing you have to do, is to enter this line in your .pro:

    LIBS += C:\Qt\2009.04\mingw\lib\libws2_32.a

    this includes the winsock2-library to your project and you have nothing else to do.

    You may do this slightly more simply by using this line in your .pro:

    LIBS += -lws2_32
    
    0 讨论(0)
  • 2020-12-11 18:09

    I have ws2_32.lib in c:\Program Files\Microsoft SDK\Lib\WS2_32.Lib it comes with the platform sdk. I have a very old version from Feb 2003 I think, I only needed it when I was using VC6.0, but I assume it is in the latest version too.

    0 讨论(0)
  • 2020-12-11 18:12

    You are supposed to use the full or relative path (depends on what library paths you have in your enviroment) to the .libs.

    From the qmake manual:

    win32:LIBS += c:/mylibs/math.lib
    
    0 讨论(0)
提交回复
热议问题