I have just upgrade my CMake from version 2.8 to 3.2.
It\'s working like a charm in CMake 2.8 but, after the upgrade, it\'s failing.
I\'m trying to build thi
For CMake 3.8.0 this worked for me:
Install/update openssl:
yum install openssl openssl-devel
Adapt the solution from a CMake forum reply by Brad King:
./configure --prefix=/software/cmake-3.8.0/ --parallel=${NPROC} -- \
-/DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_USE_OPENSSL:BOOL=ON
make -j ${NPROC}
make install
Enjoy!