Last active
January 29, 2019 15:28
-
-
Save cbarraco/5e5a6708d4c717bf225040326bbad83b to your computer and use it in GitHub Desktop.
Downloads, compiles, and installs the latest version of CMake. Replace 4 with however many CPU cores the machine has. If using the Raspberry Pi, use 2 instead of 4 because you may run out of memory.
This file contains 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
git clone https://github.com/Kitware/CMake.git | |
cd CMake | |
./bootstrap --parallel=4 | |
make -j 4 | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment