Could NOT find ZLIB (missing: ZLIB_LIBRARY ZLIB_INCLUDE_DIR)
001、问题 cmake 报错
[root@PC1 build]# cmake ..
002、解决方法, 下载zlib并安装
a、下载
b、解压并安装
[root@PC1 software]# tar -xzvf zlib-1.2.13.tar.gz [root@PC1 software]# cd zlib-1.2.13/ [root@PC1 zlib-1.2.13]# ./configure [root@PC1 zlib-1.2.13]# make [root@PC1 zlib-1.2.13]# make install
003、cmake测试
[root@PC1 build]# cmake ..
。