CMake
Last updated
Last updated
apt remove cmakeapt install libssl-dev build-essentialcd /usr/src # choose a proper directory
wget https://github.com/Kitware/CMake/releases/download/v3.16.0/cmake-3.16.0.tar.gz # download CMake file
tar -zxvf cmake-3.16.0.tar.gz # unzip file
cd cmake-3.16.0 # enter root of CMake project./bootstrap # run the build script provided by project
make # compile
sudo make install # installcmake --versioncmake version 3.16.0
CMake suite maintained and supported by Kitware (kitware.com/cmake).