Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 QT Creator 创建一个应用程序,并且我正在 Windows 上打开一个套接字,但是我不希望使用本机 QT 套接字,而是希望使用 Windows 提供的套接字。我需要在编译时使用标志 -lws2_32 链接到库中,但我似乎找不到可以在 makefile.release 之外添加该选项的地方。我试图编辑makefile,但它被覆盖并且无法编译。有没有办法为一个特定的文件指定一个构建标志?
在项目 .pro 文件中添加一行
LIBS += -lws2_32
或者
LIBS += C:/Path/to/ws2_32.lib
参考这里。