Skip to content

Instantly share code, notes, and snippets.

@paulocoutinhox
Created December 21, 2017 20:55
Show Gist options
  • Save paulocoutinhox/dc6ed0ec9b2ea7776f062acf8959b4fd to your computer and use it in GitHub Desktop.
Save paulocoutinhox/dc6ed0ec9b2ea7776f062acf8959b4fd to your computer and use it in GitHub Desktop.
Install CMake 3.10 from source
version=3.10
build=1
mkdir ~/temp
cd ~/temp
wget https://cmake.org/files/v$version/cmake-$version.$build.tar.gz
tar -xzvf cmake-$version.$build.tar.gz
cd cmake-$version.$build/
./bootstrap
make -j4
sudo make install
cmake --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment