在 Visual Studio 8 中链接 libcurl

发布于 2024-12-01 16:57:08 字数 242 浏览 1 评论 0原文

我有一个 C 项目需要编译成 DLL。

该 C 项目包括 .我用 VS2008 从源代码编译了 libcurl.dll。

我将 libcurl.dll 放在 C:\Windows\System32 中(我想这相当于安装 DLL)

现在,当我编译自己的 C 项目时,它说“无法打开包含文件curl/curl.h”。

我错过了什么步骤吗?抱歉,我对 Windows 系统真的很陌生。

提前致谢!

I have a C project needed to be compiled into a DLL.

This C project includes . I had compiled a libcurl.dll from source with VS2008.

I put the libcurl.dll in C:\Windows\System32 (I suppose this serves as installing the DLL)

Now, when I compile my own C project, it says 'cannot open include file curl/curl.h'.

Did I miss any steps? Sorry I'm really new to Windows system.

Thanks in advance!

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

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

发布评论

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

评论(1

青春如此纠结 2024-12-08 16:57:08

您需要将curl/curl.h 的路径添加为项目设置中的附加包含目录。右键单击该项目,转到属性,它位于编译器部分下。

您还需要在链接器设置下添加curl.lib 作为输入库。

You need to add the path to curl/curl.h as an additional include directory in your project settings. Right click on the project, go to properties, and it's under the compiler section.

You'll also need to add curl.lib as a input library under your linker settings.

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