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
The problem may be that the CURL library shipped with CMake isn't build with SSL support by default. I had to compile cmake with:
./bootstrap --system-curl make sudo make install
... and that worked, because my system's curl has SSL support.