Created
February 18, 2020 12:18
-
-
Save bast/71a87813be3afa3f3cba831bd3217968 to your computer and use it in GitHub Desktop.
How to get a recent CMake.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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