CMake使用教程.docx

上传人:b****8 文档编号:11345726 上传时间:2023-02-28 格式:DOCX 页数:17 大小:21.80KB
下载 相关 举报
CMake使用教程.docx_第1页
第1页 / 共17页
CMake使用教程.docx_第2页
第2页 / 共17页
CMake使用教程.docx_第3页
第3页 / 共17页
CMake使用教程.docx_第4页
第4页 / 共17页
CMake使用教程.docx_第5页
第5页 / 共17页
点击查看更多>>
下载资源
资源描述

CMake使用教程.docx

《CMake使用教程.docx》由会员分享,可在线阅读,更多相关《CMake使用教程.docx(17页珍藏版)》请在冰豆网上搜索。

CMake使用教程.docx

CMake使用教程

CMake使用教程

CMake简介

CMake是一个跨平台的、开源的构建工具。

cmake是makefile的上层工具,它们的目的正是为了产生可移植的makefile,并简化自己动手写makefile时的巨大工作量.目前很多开源的项目都可以通过CMake工具来轻松构建工程,例如博客之前分享的openHMD、hidapi、OSVR-Core等等,代码的分享者提供源代码和相应的Cmake配置文件,使用者就可以非常方便的在自己的电脑上构建相应的工程,进行开发和调试。

CMake链接

CMake官网

CMakeWiki

CMake3.7Document

CMake教程

官方英文教程,黑体部分是本人在操作过程中,觉得需要额外提示的地方,整理翻译如下:

第一步:

一个简单的起点

最简单的工程就是将一些源文件编译为可执行程序。

对于简单工程来说,只需要在CMakeList.txt添加2行内容即可。

这就是我们这个教程的起点,CMakeLists.txt文件内容如下:

cmake_minimum_required(VERSION2.6)

project(Tutorial)

add_executable(Tutorialtutorial.cxx)

注意:

CMake文件是不区分大小写的,这个例子中CMakeLists.txt文件中都使用小写字母。

源文件”tutorial.cxx”用来计算一个数的平方根,它的第一个版本非常简单,如下所示:

//Asimpleprogramthatcomputesthesquarerootofanumber

#include

#include

#include

intmain(intargc,char*argv[])

{

if(argc<2)

{

fprintf(stdout,"Usage:

%snumber\n",argv[0]);

return1;

}

doubleinputValue=atof(argv[1]);

doubleoutputValue=sqrt(inputValue);

fprintf(stdout,"Thesquarerootof%gis%g\n",

inputValue,outputValue);

return0;

}

添加版本号和配置头文件

我们添加的第一个特性就是为我们的可执行程序和工程提供一个版本号.你可以在源代码中写入版本号,然而在CMakeLists.txt中提供(版本号)更灵活.修改CMakeLists.txt增加一个版本号,内容如下:

cmake_minimum_required(VERSION2.6)

project(Tutorial)

#Theversionnumber.

set(Tutorial_VERSION_MAJOR1)

set(Tutorial_VERSION_MINOR0)

#configureaheaderfiletopasssomeoftheCMakesettings

#tothesourcecode

configure_file(

"${PROJECT_SOURCE_DIR}/TutorialConfig.h.in"

"${PROJECT_BINARY_DIR}/TutorialConfig.h"

#addthebinarytreetothesearchpathforincludefiles

#sothatwewillfindTutorialConfig.h

include_directories("${PROJECT_BINARY_DIR}")

#addtheexecutable

add_executable(Tutorialtutorial.cxx)

因为配置文件将会被写入到二进制树当中,我们需要把这个目录添加到头文件路径当中。

我们接着创建一个”TutorialConfig.h.in”文件,内容如下:

//theconfiguredoptionsandsettingsforTutorial

#defineTutorial_VERSION_MAJOR@Tutorial_VERSION_MAJOR@

#defineTutorial_VERSION_MINOR@Tutorial_VERSION_MINOR@

当CMake配置这个头文件是,”@Tutorial_VERSION_MAJOR@”和”@Tutorial_VERSION_MINOR@”的值将会被CMakeLists.txt文件中的值替换。

下一步我们修改”tutorial.cxx”来包含配置头文件来使用版本号。

修改后的代码如下:

//Asimpleprogramthatcomputesthesquarerootofanumber

#include

#include

#include

#include"TutorialConfig.h"

intmain(intargc,char*argv[])

{

if(argc<2)

{

fprintf(stdout,"%sVersion%d.%d\n",

argv[0],

Tutorial_VERSION_MAJOR,

Tutorial_VERSION_MINOR);

fprintf(stdout,"Usage:

%snumber\n",argv[0]);

return1;

}

doubleinputValue=atof(argv[1]);

doubleoutputValue=sqrt(inputValue);

fprintf(stdout,"Thesquarerootof%gis%g\n",

inputValue,outputValue);

return0;

}

上面代码最主要的修改就是包含了TutorialConfig.h头文件,并且打印出版本号。

第二步:

添加一个库

现在我们为我们的工程添加一个库。

这个库包含了自己实现的一个用来计算数的平方根函数。

应用程序可以使用这个库来计算平方根,而不是使用编译器提供的标准库。

教程里我们会把这个库放到一个叫做”MathFunctions”的子文件夹中。

它包含一个只有一行内容的CMakeLists.txt文件:

add_library(MathFunctionsmysqrt.cxx)

源文件”mysqrt.cxx”有一个叫做mysqrt的函数,它跟编译器提供的sqrt函数类似。

为了使用这个新库,我们要在顶层的CMakeLists.txt中添加”add_subdirectory”调用,以便使这个库能够被编译到.我们还需要添加另外一个包含文件夹以便找到包含在头文件”MathFunctions/MathFunctions.h”中的函数原型.最后把新库添加到应用程序当中,在顶层的CMakeLists.txt文件中添加如下内容:

include_directories("${PROJECT_SOURCE_DIR}/MathFunctions")

add_subdirectory(MathFunctions)

#addtheexecutable

add_executable(Tutorialtutorial.cxx)

target_link_libraries(TutorialMathFunctions)

注意:

这里需要自己手动在MathFunctions文件夹里添加”mysqrt.cxx”和”MathFunctions.h”文件,这2个文件里的代码可以参考文章最后提供的附件

现在让我们把MathFunctions库做成可选的.当然在这个教程的工程中这个操作有点多余.但是在你的其他工程中,多数情况会有大量的依赖第三方的库文件.添加一个可选库,需要在最高层的CMakeLists.txt文件中添加一些内容:

#shouldweuseourownmathfunctions?

option(USE_MYMATH

"Usetutorialprovidedmathimplementation"ON)

这个USE_MYMATH将会显示在CMakeGUI当中,并且默认值为ON,这个设置将会被保存到CACHE当中,所以用户每次打开工程时不必重新配置.下一步需要做一些修改,以便使MathFunctions库参与编译和链接.这个修改是在顶层的CMakeLists.txt文件中,内容如下:

#addtheMathFunctionslibrary?

#

if(USE_MYMATH)

include_directories("${PROJECT_SOURCE_DIR}/MathFunctions")

add_subdirectory(MathFunctions)

set(EXTRA_LIBS${EXTRA_LIBS}MathFunctions)

endif(USE_MYMATH)

#addtheexecutable

add_executable(Tutorialtutorial.cxx)

target_link_libraries(Tutorial${EXTRA_LIBS})

通过配置USB_MYMATH来决定是否编译和使用MathFunctions.注意上面的”EXTRA_LIBS”变量是用来收集每一个可选库的,以便他们链接到可执行程序中.这是一个保持大项目工程可选库清洁的通用方法.相应的源代码修改是很直观的,如下:

//Asimpleprogramthatcomputesthesquarerootofanumber

#include

#include

#include

#include"TutorialConfig.h"

#ifdefUSE_MYMATH

#include"MathFunctions.h"

#endif

intmain(intargc,char*argv[])

{

if(argc<2)

{

fprintf(stdout,"%sVersion%d.%d\n",argv[0],

Tutorial_VERSION_MAJOR,

Tutorial_VERSION_MINOR);

fprintf(stdout,"Usage:

%snumber\n",argv[0]);

return1;

}

doubleinputValue=atof(argv[1]);

#ifdefUSE_MYMATH

doubleoutputValue=mysqrt(inputValue);

#else

doubleoutputValue=sqrt(inputValue);

#endif

fprintf(stdout,"Thesquarerootof%gis%g\n",

inputValue,outputValue);

return0;

}

在源文件中,我们也使用了USE_MYMATH,CMake通过修改配置文件TutorialConfig.h.in配置文件来为源文件这个提供支持,添加内容如下:

#cmakedefineUSE_MYMATH

第三步:

安装和测试

下一步我们将为我们的工程添加安装规则和测试.安装规则相当简单,为了安装MathFunctions库和头文件,我们需要在MathFunctions文件夹的CMakeLists.txt文件中,添加如下内容:

install(TARGETSMathFunctionsDESTINATIONbin)

install(FILESMathFunctions.hDESTINATIONinclude)

对于应用程序,需要在最顶层的CMakeLists.txt文件中安装可执行程序和配置头文件.

#addtheinstalltargets

install(TARGETSTutorialDESTINATIONbin)

install(FILES"${PROJECT_BINARY_DIR}/TutorialConfig.h"

DESTINATIONinclude)

注意:

上面这几行内容,需要添加在如下代码之后,否则编译会报错,提示找不到”Tutorial”

#addtheexecutable

add_executable(Tutorialtutorial.cxx)

target_link_libraries(Tutorial${EXTRA_LIBS})

这就是所有要做的.到这里你应该可以构建这个教程了,然后输入”makeinstall”(或则使用IDE编译出INSTALL目标),它将安装适当的头文件,库,和可执行程序.CMake变量”CMAKE_INSTALL_PREFIX”用来决定这些文件将被安装的根路径.添加测试也是很简单的.在顶层的CMakeLists.txt文件中添加一些简单的测试,来确认应用程序工作正常.

include(CTest)

#doestheapplicationrun

add_test(TutorialRunsTutorial25)

#doesitsqrtof25

add_test(TutorialComp25Tutorial25)

set_tests_properties(TutorialComp25PROPERTIESPASS_REGULAR_EXPRESSION"25is5")

#doesithandlenegativenumbers

add_test(TutorialNegativeTutorial-25)

set_tests_properties(TutorialNegativePROPERTIESPASS_REGULAR_EXPRESSION"-25is0")

#doesithandlesmallnumbers

add_test(TutorialSmallTutorial0.0001)

set_tests_properties(TutorialSmallPROPERTIESPASS_REGULAR_EXPRESSION"0.0001is0.01")

#doestheusagemessagework?

add_test(TutorialUsageTutorial)

set_tests_properties(TutorialUsagePROPERTIESPASS_REGULAR_EXPRESSION"Usage:

.*number")

在构建完成之后需要运行”ctest”命令来运行上面的测试.第一个测试用例用来确保应用程序是否有段错误,crash,返回值非0.这个是一个简单的CTest测试.接下来的几个测试都是利用”PASS_REGULAR_EXPRESSION”测试属性来验证输出是否包含特定字符串.在这个例子当中验证平方根计算是否正确,以及当输入错误信息时候输出使用信息.如果你希望添加更多测试来测试不同的输入值,你可以考虑创建一个宏像如下这样:

#defineamacrotosimplifyaddingtests,thenuseit

macro(do_testargresult)

add_test(TutorialComp${arg}Tutorial${arg})

set_tests_properties(TutorialComp${arg}

PROPERTIESPASS_REGULAR_EXPRESSION${result})

endmacro(do_test)

#doabunchofresultbasedtests

do_test(25"25is5")

do_test(-25"-25is0")

do_test的每一次调用,就会有一次测试被添加到工程当中,测试的名字、输入、结果,基于传递的参数.

第四步:

添加系统自检

下一步让我们考虑添加一些代码到我们的工程,以支持目标平台没有的特性.在这个例子当中,我们将添加一些代码来验证目标平台是否具有log和exp函数.当然几乎所有的平台都有这些函数,教程假设一下这种少数情况.如果平台有log函数,那么我们在mysqrt函数中用它来计算输出.第一步我们利用CheckFunctionExists.cmake宏测试这些函数是否有效,在顶层CMakeLists.txt文件中添加如下内容:

#doesthissystemprovidethelogandexpfunctions?

include(CheckFunctionExists)

check_function_exists(logHAVE_LOG)

check_function_exists(expHAVE_EXP)

接着我们修改”TutorialConfig.h.in”来定义那些CMake在平台上查找到的值,修改如下:

//doestheplatformprovideexpandlogfunctions?

#cmakedefineHAVE_LOG

#cmakedefineHAVE_EXP

在使用log和exp之前,确定他们是否被定义,是非常重要的.在CMake中,配置文件的命令会立刻使用目前的配置.最后在mysqrt函数中,我们可以提供一个基于log和exp函数的实现,代码如下:

//ifwehavebothlogandexpthenusethem

#ifdefined(HAVE_LOG)&&defined(HAVE_EXP)

result=exp(log(x)*0.5);

#else//otherwiseuseaniterativeapproach

...

注意:

这里需要在”mysqrt.cxx”文件里添加头文件#include“TutorialConfig.h”,否则找不到定义的宏

第5步:

添加/生成一个通用的文件

这一节我们将演示如何添加一个源文件到一个应用程序当中.在这个例子当中,我们将会创建一个已经计算好的平方根表,它作为构建过程的一部分,并且编译进我们的应用程序.为了实现这个功能,我们需要一个程序来生成这个表.在MathFunctions子文件夹中我们添加一个叫做MakeTable.cxx的文件,它的内容如下:

//Asimpleprogramthatbuildsasqrttable

#include

#include

#include

intmain(intargc,char*argv[])

{

inti;

doubleresult;

//makesurewehaveenougharguments

if(argc<2)

{

return1;

}

//opentheoutputfile

FILE*fout=fopen(argv[1],"w");

if(!

fout)

{

return1;

}

//createasourcefilewithatableofsquareroots

fprintf(fout,"doublesqrtTable[]={\n");

for(i=0;i<10;++i)

{

result=sqrt(static_cast(i));

fprintf(fout,"%g,\n",result);

}

//closethetablewithazero

fprintf(fout,"0};\n");

fclose(fout);

return0;

注意,这个表格是用C++代生成的,并且文件的名字是通过该程序的运行参数传入的.下一步就是添加一个适当的命令到MathFunctions的CMakeLists.txt文件来构建MakeTable应用程序,然后在构建过程中运行它.完成这些操作,我们需要添加如下命令:

#firstweaddtheexecutablethatgeneratesthetable

add_executable(MakeTableMakeTable.cxx)

#addthecommandtogeneratethesourcecode

add_custom_command(

OUTPUT${CMAKE_CURRENT_BINARY_DIR}/Table.h

COMMANDMakeTable${CMAKE_CURRENT_BINARY_DIR}/Table.h

DEPENDSMakeTable

#addthebinarytreedirectorytothesearchpathfor

#includefiles

include_directories(${CMAKE_CURRENT_BINARY_DIR})

#addthemainlibrary

add_library(MathFunctionsmysqrt.cxx${CMAKE_CURRENT_BINARY_DIR}/Table.h)

首先,可执行程序MakeTable像所有可执行程序一样被添加.接着我们添加一些命令来让MakeTable生成Table.h.然后我们让CMake知道mysqrt.cxx依赖于生成的Table.h.这需要为MathFunctions库把生成的Table.h文件添加到源文件列表当中,我们还需要添加当前的二进制文件夹添加到include文件夹列表当中,以便Table.h文件可以被mysqrt.cxx找到并包含.当工程被构建时,它将会先构建MakeTable可执行程序.它将运行MakeTable来生成Table.h文件.最后,它编译包含了Table.h文件的mysqrt.cxx来生成MathFunctions库.为了达到这个目的,顶层的CMakeLists.txt需要添加如下代码:

cmake_minimum_required(VERSION2.6)

project(Tutorial)

include(CTest)

#Theversionnumber.

set(Tutorial_VERSION_MAJOR1)

set(Tutorial_VERSION_MINOR0)

#doesthissystemprovidethelogandexpfunctions?

include(${CMAKE

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 工程科技 > 电力水利

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1