博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UBuntu CMake使用示例
阅读量:4978 次
发布时间:2019-06-12

本文共 1849 字,大约阅读时间需要 6 分钟。


一:安装CMake
sudo apt-get install cmake
 
Do you want to continue [Y/n]? y
Get:1 http://cn.archive.ubuntu.com/ubuntu/ quantal/main libxmlrpc-core-c3 i386 1.16.33-3.1ubuntu6 [182 kB]
Get:2 http://cn.archive.ubuntu.com/ubuntu/ quantal/main emacsen-common all 2.0.3 [17.3 kB]
Get:3 http://cn.archive.ubuntu.com/ubuntu/ quantal/main cmake-data all 2.8.9-0ubuntu1 [796 kB]
Get:4 http://cn.archive.ubuntu.com/ubuntu/ quantal/main cmake i386 2.8.9-0ubuntu1 [4730 kB]
......
 
二:编写待测试程序
hhh@hhh-VirtualBox:~/project/test$ vi hhh.cpp
#include <iostream>
using namespace std;
 
int main()
{
    cout<<"hello my test"<<endl;
    return 0;
}
 
三:编写CMakefile.txt
hhh@hhh-VirtualBox:~/project/test$ vi CMakeLists.txt
 
PROJECT (hhh)
SET(SRC_LIST hhh.cpp)
MESSAGE(STATUS "This is BINARY dir "${HHH_BINARY_DIR}) 
MESSAGE(STATUS "This is SOURCE dir "${HHH_SOURCE_DIR})
ADD_EXECUTABLE(hhh ${SRC_LIST})  
 
四:执行cmake命令生成makefile文件
hhh@hhh-VirtualBox:~/project/test$ cmake .
-- The C compiler identification is GNU 4.7.2
-- The CXX compiler identification is GNU 4.7.2
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- This is BINARY dir 
-- This is SOURCE dir 
-- Configuring done
-- Generating done
-- Build files have been written to: /home/hhh/project/test
 
五:执行make命令,生成目标文件
hhh@hhh-VirtualBox:~/project/test$ make
Scanning dependencies of target hhh
[100%] Building CXX object CMakeFiles/hhh.dir/hhh.cpp.o
Linking CXX executable hhh
[100%] Built target hhh
 
六:运行程序
hhh@hhh-VirtualBox:~/project/test$ ./hhh
hello my test

转载于:https://www.cnblogs.com/tyjw/archive/2013/02/13/2910765.html

你可能感兴趣的文章
python创建对象数组避免浅拷贝
查看>>
CSS自学笔记(14):CSS3动画效果
查看>>
项目应用1
查看>>
Ubuntu下配置jdk和tomcat
查看>>
大型网站的演变升级
查看>>
图片延迟加载的实现
查看>>
C# 委托链(多播委托)
查看>>
解密个推持续集成
查看>>
基本SCTP套接字编程常用函数
查看>>
C 编译程序步骤
查看>>
页面抓取匹配时,万恶的\r,\n,\t 要先替换掉为空,出现匹配有问题,都是这个引起的...
查看>>
利用Node.js调用Elasticsearch
查看>>
构造函数
查看>>
LeetCode N-Queens
查看>>
jstat 命令
查看>>
leetcode[155]Min Stack
查看>>
《代码不朽:编写可维护软件的10大要则(C#版)》读后感
查看>>
04、我的.net Core的学习 - 网页版Hello World
查看>>
分块学习
查看>>
UIWebView 屏蔽或者修改 alert警告框
查看>>