在 Visual Studio 8 中链接 libcurl
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将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.