ubuntu14.04的默认cmake版本是2.8,而我在clion中使用的需要是cmake3.2,需要将cmake升级到3.2。
具体的步骤如下:
通过PPA安装
sudo add-apt-repository ppa:george-edison55/cmake-3.x
sudo apt-get update
如果你从来没装过cmake
sudo apt-get install cmake
如果你装过cmake
sudo apt-get upgrade
安装完后,用命令:cmake --version 查看当前的cmake版本,可以看到现在cmake的版本为3.2.2
如果你想自己编译安装,步骤如下:
sudo apt-get install build-essential
wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz
tar xf cmake-3.2.2.tar.gz
cd cmake-3.2.2
./configure
make
sudo apt-get install checkinstall
sudo checkinstall
sudo make install
我使用的是第一个方法,对于第二个方法,我也不是特别了解,如有疑问可以参考http://askubuntu.com/questions/610291/how-to-install-cmake-3-2-on-ubuntu-14-04
ubuntu系统下cmake编译matlab中mex文件:http://www.linuxdiyf.com/linux/16589.html
ubuntu安装Cmake:http://www.linuxdiyf.com/linux/15377.html
Ubuntu12.04 cmake安装:http://www.linuxdiyf.com/linux/13877.html
在Ubuntu 15.04下安装git、vpnc、CMake及Qt Creator:http://www.linuxdiyf.com/linux/11810.html
CentOS安装CMake:http://www.linuxdiyf.com/linux/2747.html