InstallCmake
From KratosWiki
(Difference between revisions)
(Created page with "you can get the cmake by doing wget www.cmake.org/files/v2.8/cmake-2.8.8.tar.gz in this case this download the 2.8.8 version, the link should be modified to download a diffe...") |
|||
Line 1: | Line 1: | ||
− | + | You can get the cmake by by downloading it form [http://www.cmake.org/cmake/resources/software.html cmake_website] | |
− | + | or by typing | |
− | in this case this download the 2.8. | + | wget www.cmake.org/files/v2.8/cmake-2.8.12.1.tar.gz |
+ | |||
+ | in this case this download the 2.8.12.1 version, the link should be modified to download a different version (to check the latest version available go to http://www.cmake.org/files/v2.8/). | ||
once the download succeeds the compilation can be done by | once the download succeeds the compilation can be done by | ||
− | tar -xvf cmake-2.8. | + | tar -xvf cmake-2.8.12.1.tar.gz |
− | cd cmake-2.8. | + | cd cmake-2.8.12.1 |
./configure | ./configure | ||
make | make | ||
sudo make install | sudo make install |
Revision as of 09:55, 13 November 2013
You can get the cmake by by downloading it form cmake_website
or by typing
wget www.cmake.org/files/v2.8/cmake-2.8.12.1.tar.gz
in this case this download the 2.8.12.1 version, the link should be modified to download a different version (to check the latest version available go to http://www.cmake.org/files/v2.8/).
once the download succeeds the compilation can be done by
tar -xvf cmake-2.8.12.1.tar.gz cd cmake-2.8.12.1 ./configure make sudo make install