cmake安装方法

Posted 张大猛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cmake安装方法相关的知识,希望对你有一定的参考价值。

由于Ubuntu14.04的cmake版本为2.8.x,而如果需要cmake3.x版本时,无法生成makefile,有两种方法可以安装cmake3.10.0:

方法1:

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:george-edison55/cmake-3.x
sudo apt-get update
sudo apt-get install cmake
sudo apt-get upgrade

方法2:
sudo apt-get install build-essential
wget http://www.cmake.org/files/v3.4/cmake-3.4.1.tar.gz
tar xf cmake-3.4.1.tar.gz
cd cmake-3.4.1
./configure
make
sudo apt-get install checkinstall
sudo checkinstall
sudo make install

 


最后在终端输入:
cmake --version

如果显示cmake version 3.4.1

则安装成功!

以上是关于cmake安装方法的主要内容,如果未能解决你的问题,请参考以下文章

cmake practice一文中安装可执行文件的方法

cmake安装方法

Linux下VSCode的安装和使用(VScode C/C++配置 CMake的使用)(GCCGDB)(各类插件 SnippetsCode RunnerInclude Autocomplete)(代码

更新CMake3.16+的方法

cmake基础教程(13)cmake安装位置前缀CMAKE_INSTALL_PREFIX

编译安装cmake