Skip to content

Instantly share code, notes, and snippets.

@bast
Created February 18, 2020 12:18
Show Gist options
  • Save bast/71a87813be3afa3f3cba831bd3217968 to your computer and use it in GitHub Desktop.
Save bast/71a87813be3afa3f3cba831bd3217968 to your computer and use it in GitHub Desktop.
How to get a recent CMake.
wget -qO- https://github.com/Kitware/CMake/releases/download/v3.16.4/cmake-3.16.4-Linux-x86_64.tar.gz | tar xz
mv cmake-3.16.4-Linux-x86_64 cmake
# you can load this in a script that needs CMake
export PATH=$HOME/cmake/bin:$PATH
cmake --version
# cmake version 3.16.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment