如何将 C 库添加到 Microsoft Visual C++项目?

发布于 2024-11-08 22:31:13 字数 139 浏览 0 评论 0原文

我正在使用 Microsoft Visual C++ 开发一个项目。我想添加 USB 设备驱动程序库,它是一个 C 库。

我是否需要构建一些额外的库来添加此 USB 库?

I am working on a project in Microsoft Visual C++. I want to add the USB device driver library which is a C library.

Do I need to build some extra library to add this USB library?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瑕疵 2024-11-15 22:31:13

转到项目菜单,然后属性,

  • C/C++ 的配置属性选项卡,常规,将头文件目录放在链接器的“附加包含目录”中
  • ,常规,将 .lib 文件所在的目录添加到“附加库目录” 在链接
  • 器中,输入,将.lib文件的名称添加到“附加依赖项”

编译您的程序,如有必要,将您需要的任何.dll复制到包含.exe的目录中

Go to the project menu, then properties, configuration properties tab

  • at C/C++, general, put the header file directory in "Additional Include Directories"
  • in Linker, general, add the directory that the .lib files are in to "Additional Library Directories"
  • in Linker, input, add the names of the .lib files to "Additional Dependencies"

Compile you program, and if necessary, copy any .dlls you will need to the directory containing the .exe

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文