1.vs08打开curl-7.52.1/PRojects/Windows/VC9/lib/libcurl.vcproj2.拷贝编译配置LIB_Debug到Debug3.编辑Debug,输出exe,附加依赖项添加ws2_32.lib和wldap32.lib4.添加main程序到项目中,例如curl-7.52.1/docs/examples/simple.c此时编译成功,调试弹窗提示Debugging information cannot be found or does not match..5.To enable debugging:1) Goto Project->HelloWorld Properties2) On the left expand "Configuration Properties"3) Expand "C/C++"4) On the left, Select "General"5) On the right, change "Debug Information Format" to "Program Database For Edit And Continue (/ZI)"5) On the left, Select "Optimization"6) On the right, change "Optimization" to "Disabled (/Od)"7) On the left, expand "Linker"8) On the left, select "Debugging"9) On the right, change "Generate Debug Info" to "Yes"10) Click ok11) Set your breakpoints12) Rebuild your application