下载

CMake 提供了两个版本

  • Source Distribution 源码版,需要自行编译成可执行文件
  • Binary Distribution 可执行版,已经编译好的版本
getconf LONG_BIT #确定系统32/64位

选择对应的最新的版本,我是下载了可执行版,为 cmake-3.14.0-Linux-x86_64.tar.gz

安装

先解压下载好的安装包

tar -xvf cmake-3.14.0-Linux-x86_64.tar.gz  

添加环境变量

vi /etc/profile

profile 里面的最后一行加入

export PATH=$PATH:/path/to/cmake/cmake-3.14.0-Linux-x86_64/bin

看一下是否添加正确了

$ source /etc/profile
$ cmake --version
cmake version 3.14.0
CMake suite maintained and supported by Kitware (kitware.com/cmake).

测试

最后测试是否生效,并可正常使用

先重启计算机然后执行命令

$ cmake --version
cmake version 3.14.0
CMake suite maintained and supported by Kitware (kitware.com/cmake).
Logo

更多推荐