当前位置 : 主页 > 网络安全 > 测试自动化 >

CMake简介

来源:互联网 收集:自由互联 发布时间:2021-06-19
CMake是一个跨平台的自动化建构系统,它使用一个名为CMakeLists.txt的文件来描述构建过程,可以产生标准的构建文件,如 Unix 的 Makefile 或Windows Visual C++ 的 projects/workspaces 。文件 CMakeLists.txt

CMake是一个跨平台的自动化建构系统,它使用一个名为CMakeLists.txt的文件来描述构建过程,可以产生标准的构建文件,如 Unix 的 Makefile 或Windows Visual C++ 的 projects/workspaces 。文件 CMakeLists.txt 需要手工编写,也可以通过编写脚本进行半自动的生成。CMake 提供了比 autoconfig 更简洁的语法。在 linux 平台下使用 CMake 生成 Makefile 并编译的流程如下:

1.编写 CmakeLists.txt。

2.执行命令“cmake PATH”或者“ccmake PATH”生成 Makefile ( PATH 是 CMakeLists.txt 所在的目录)。

3. 使用 make 命令进行编译。

cmake [<options>] {<path-to-source> | <path-to-existing-build>}

cmake [<options>] -S <path-to-source> -B <path-to-build>

-S <path-to-source>

Path to root directory of the CMake project to build.

-B <path-to-build>

Path to directory which CMake will use as the root of build directory.

If the directory doesn’t already exist CMake will make it.

网友评论