本文介绍了使用Visual Studio 2012的静态libzip的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用libzip库构建一个小应用程序。我在本文的帮助下下载并编译了libzip:







问题在于它动态编译库,需要zlib.dll和zip.dll存在。我想完全静态地编译应用程序,因此不需要额外的dll。有人知道我该怎么做吗?



谢谢!

I am trying to build a little application using libzip library. I downloaded and compiled libzip with assistance of this article:

http://stackoverflow.com/questions/10507893/libzip-with-visual-studio-2010

The problem is that it compiles libs dynamically, requiring both zlib.dll and zip.dll to be present. I want to compile the application completely statically, so no additional dlls will be required. does someone know how I can do that?

Thanks!

推荐答案


这篇关于使用Visual Studio 2012的静态libzip的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-16 22:40