Qt:How to tell Qmake to include ws2_32 in visual studio project
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 i开发者_JS百科n my visual studio project the windows ws2_32 socket lib in the include lib dir ?Try to add QMAKE_LIBS += ws2_32.lib
in your .pro file.
精彩评论