作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将 ws2_32.lib 包含到我的应用程序中,但 CMake 在 -l
到项目属性。
...
add_executable(Executive ${exec_src})
target_link_libraries(Executive ws2_32)
-lws2_32.lib
.为什么添加
-l
?我该如何删除它,因为一旦我手动将其更改为
ws2_32.lib
该项目能够正确链接。
find_library(WIN_C ws2_32)
但结果是
NOTFOUND
.
最佳答案
自从我之前的回答以来,我自己找到了更好的方法。
在 CMAKE 输出开始时,您是否看到类似这样的内容?:
The C compiler identification is unknown
The CXX compiler identification is unknown
关于visual-studio-2010 - 如何在 CMake 中添加 Windows 库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17846850/
我是一名优秀的程序员,十分优秀!