Windows上的CMake zlib依赖性错误

时间:2015-04-07 00:28:08

标签: c++ cmake zlib openexr

我正在尝试在Windows上构建OpenEXR 2.2,但下载附带的说明并未按预期工作。 IlmBase的指令有效,但是一旦我得到OpenEXR指令,它就会因为zlib而失败。此时的步骤是:

3. Go to http://www.zlib.net and download zlib 

所以我去了这个网站以及以下开头的部分:当前版本在这里公开发布:我下载了 zlib源代码,版本1.2.8,zipfile格式..

然后,我转到下一步,这是我收到错误的地方:

4. Launch a command window, navigate to the OpenEXR folder with 
CMakeLists.txt, and type command:     
    setlocal
    del /f CMakeCache.txt
    cmake 
      -DZLIB_ROOT=<zlib location>
      -DILMBASE_PACKAGE_PREFIX=<where you installed the ilmbase builds>
      -DCMAKE_INSTALL_PREFIX=<where you want to instal the openexr builds>
      -G "Visual Studio 10 Win64" ^
      ..\openexr

所以这是我输入的命令:

cmake -DZLIB_ROOT=C:\Users\erik\Documents\zlib-1.2.8 -DILMBASE_PACKAGE_PREFIX=C:\Users\erik\Documents\ilmbase-2.2.0\bin -DCMAKE_INSTALL_PREFIX=C:\Users\erik\Documents\ilmbase-2.2.0\bin -G "Visual Studio 10 Win64" ^..\openexr-2.2.0

这是我得到的错误:

  

无法找到ZLIB(缺少:ZLIB_LIBRARY)(找到版本“1.2.8”)

第一个问题是,说明书没有说明任何关于ZLIB_LIBRARY的内容。其次,zlib下载看起来像是所有源代码。不涉及.lib或.dll文件。

1 个答案:

答案 0 :(得分:3)

您只下载了源代码。你需要先编译它。或者从zlib主页下载预编译的DLL:“zlib编译的DLL”。

ZLIB_LIBRARY将来自ZLIB_DIR,因此这部分是正确的。