Cmake安装/简单测试/错误解决

Posted 会飞滴橙子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cmake安装/简单测试/错误解决相关的知识,希望对你有一定的参考价值。

1.Cmake的安装(Ubuntu12.04)

$ apt-get install cmake
 
2.查看Cmake版本
$ cmake --version
$ cmake version 2.8.7
 
3.HelloWorld简单例子
1) 新建一个helloworld文件夹,存放源码:
$ mkdir -p ~/work/helloworld
 
2) 将准备好的helloworld.cpp与CMakeLlists都存放到该文件夹:
$ cd ~/work/helloworld
$ gedit helloworld.cpp
代码如下:
#include<iostream>

int main(int argc, char *argv[]){
    std::cout <<"Hello world!" << std::endl;
    return 0;           
}
$ gedit CMakeLists.txt
代码如下:
3) 生成Makefile文件
$ cmake . (后面的 . 表示CMakeLists所在路径,即当前路径)

cmake成功后,当前文件夹会增加CMakeCache.txt,camke_install.txt,CMakeFiles,Makefile四个文件。

 
4)编译
$ make
编译成功,生成hello目标文件
 
5)执行目标文件
$ ./hello
$ Hello World!
 
4.出现问题及解决办法:
1)在生成Makefile执行 cmake .后,出现错误提示:
CMake Error: The source directory "/home/simon/work/build" does not appear to contain CMakeLists.txt.
原因:在写CMakeLists.txt时将文件名写成Cmakelists.txt
解决:$ mv Cmakelists.txt CMakeLists.txt (一定注意大小写)
 
2)再次cmake .后,出现错误提示:
CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found. Please set CMAKE_CXX_COMPILER to a valid compiler path or name.
原因:没有安装build-essential
解决:$ sudo apt-get updata && sudo apt-get install build-essential
 
 

以上是关于Cmake安装/简单测试/错误解决的主要内容,如果未能解决你的问题,请参考以下文章

CTS测试CtsWindowManagerDeviceTestCases模块的testShowWhenLockedImeActivityAndShowSoftInput测试fail项解决方法(代码片段

ubuntu vscode上使用cmake编译调试

CMake入门——简单CMakeLists的编写

使用 cmake 和 mingw-w64 错误编译测试程序

尝试使用 CMake 添加库会导致错误

从 cmake 测试是不是存在支持 cuda 的 GPU 的最简单方法是啥?