6.1 配置时生成源码
NOTE:此示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-6/recipe-01 中找到,其中包含一个Fortran/C例子。该示例在CMake 3.10版(或更高版本)中是有效的,并且已经在GNU/Linux、macOS和Windows(使用MSYS Makefiles)上进行过测试。
代码生成在配置时发生,例如:CMake可以检测操作系统和可用库;基于这些信息,我们可以定制构建的源代码。本节和下面的章节中,我们将演示如何生成一个简单源文件,该文件定义了一个函数,用于报告构建系统配置。
准备工作
此示例的代码使用Fortran和C语言编写,第9章将讨论混合语言编程。主程序是一个简单的Fortran可执行程序,它调用一个C函数print_info()
,该函数将打印配置信息。值得注意的是,在使用Fortran 2003时,编译器将处理命名问题(对于C函数的接口声明),如示例所示。我们将使用的example.f90
作为源文件:
program hello_world
implicit none
interface
subroutine print_info() bind(c, name="print_info")
end subroutine
end interface
call print_info()
end program
C函数print_info()
在模板文件print_info.c.in
中定义。在配置时,以@
开头和结尾的变量将被替换为实际值:
#include <stdio.h>
#include <unistd.h>
void print_info(void)
{
printf("\n");
printf("Configuration and build information\n");
printf("-----------------------------------\n");
printf("\n");
printf("Who compiled | %s\n", "@_user_name@");
printf("Compilation hostname | %s\n", "@_host_name@");
printf("Fully qualified domain name | %s\n", "@_fqdn@");
printf("Operating system | %s\n",
"@_os_name@, @_os_release@, @_os_version@");
printf("Platform | %s\n", "@_os_platform@");
printf("Processor info | %s\n",
"@_processor_name@, @_processor_description@");
printf("CMake version | %s\n", "@CMAKE_VERSION@");
printf("CMake generator | %s\n", "@CMAKE_GENERATOR@");
printf("Configuration time | %s\n", "@_configuration_time@");
printf("Fortran compiler | %s\n", "@CMAKE_Fortran_COMPILER@");
printf("C compiler | %s\n", "@CMAKE_C_COMPILER@");
printf("\n");
fflush(stdout);
}
具体实施
在CMakeLists.txt中,我们首先必须对选项进行配置,并用它们的值替换print_info.c.in
中相应的占位符。然后,将Fortran和C源代码编译成一个可执行文件:
声明了一个Fortran-C混合项目:
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
project(recipe-01 LANGUAGES Fortran C)
使用
execute_process
为项目获取当且使用者的信息:execute_process(
COMMAND
whoami
TIMEOUT
1
OUTPUT_VARIABLE
_user_name
OUTPUT_STRIP_TRAILING_WHITESPACE
)
使用
cmake_host_system_information()
函数(已经在第2章第5节遇到过),可以查询很多系统信息:# host name information
cmake_host_system_information(RESULT _host_name QUERY HOSTNAME)
cmake_host_system_information(RESULT _fqdn QUERY FQDN)
# processor information
cmake_host_system_information(RESULT _processor_name QUERY PROCESSOR_NAME)
cmake_host_system_information(RESULT _processor_description QUERY PROCESSOR_DESCRIPTION)
# os information
cmake_host_system_information(RESULT _os_name QUERY OS_NAME)
cmake_host_system_information(RESULT _os_release QUERY OS_RELEASE)
cmake_host_system_information(RESULT _os_version QUERY OS_VERSION)
cmake_host_system_information(RESULT _os_platform QUERY OS_PLATFORM)
捕获配置时的时间戳,并通过使用字符串操作函数:
string(TIMESTAMP _configuration_time "%Y-%m-%d %H:%M:%S [UTC]" UTC)
现在,准备好配置模板文件
print_info.c.in
。通过CMake的configure_file
函数生成代码。注意,这里只要求以@
开头和结尾的字符串被替换:configure_file(print_info.c.in print_info.c @ONLY)
最后,我们添加一个可执行目标,并定义目标源:
add_executable(example "")
target_sources(example
PRIVATE
example.f90
${CMAKE_CURRENT_BINARY_DIR}/print_info.c
)
下面是一个输出示例:
$ mkdir -p build
$ cd build
$ cmake ..
$ cmake --build .
$ ./example
Configuration and build information
-----------------------------------
Who compiled | somebody
Compilation hostname | laptop
Fully qualified domain name | laptop
Operating system | Linux, 4.16.13-1-ARCH, #1 SMP PREEMPT Thu May 31 23:29:29 UTC 2018
Platform | x86_64
Processor info | Unknown P6 family, 2 core Intel(R) Core(TM) i5-5200U CPU @ 2.20GHz
CMake version | 3.11.3
CMake generator | Unix Makefiles
Configuration time | 2018-06-25 15:38:03 [UTC]
Fortran compiler | /usr/bin/f95
C compiler | /usr/bin/cc
工作原理
configure_file
命令可以复制文件,并用变量值替换它们的内容。示例中,使用configure_file
修改模板文件的内容,并将其复制到一个位置,然后将其编译到可执行文件中。如何调用configure_file
:
configure_file(print_info.c.in print_info.c @ONLY)
第一个参数是模板的名称为print_info.c.in
。CMake假设输入文件的目录,与项目的根目录相对;也就是说,在${CMAKE_CURRENT_SOURCE_DIR}/print_info.c.in
。我们选择print_info.c
,作为第二个参数是配置文件的名称。假设输出文件位于相对于项目构建目录的位置:${CMAKE_CURRENT_BINARY_DIR}/print_info.c
。
输入和输出文件作为参数时,CMake不仅将配置@VAR@
变量,还将配置${VAR}
变量。如果${VAR}
是语法的一部分,并且不应该修改(例如在shell脚本中),那么就很不方便。为了在引导CMake,应该将选项@ONLY
传递给configure_file
的调用,如前所述。
更多信息
注意,用值替换占位符时,CMake中的变量名应该与将要配置的文件中使用的变量名完全相同,并放在@
之间。可以在调用configure_file
时定义的任何CMake变量。我们的示例中,这包括所有内置的CMake变量,如CMAKE_VERSION
或CMAKE_GENERATOR
。此外,每当修改模板文件时,重新生成代码将触发生成系统的重新生成。这样,配置的文件将始终保持最新。
TIPS:通过使用CMake --help-variable-list
,可以从CMake手册中获得完整的内部CMake变量列表。
NOTE:file(GENERATE…)
为提供了一个有趣的替代configure_file
,这是因为file
允许将生成器表达式作为配置文件的一部分进行计算。但是,每次运行CMake时,file(GENERATE…)
都会更新输出文件,这将强制重新构建依赖于该输出的所有目标。详细可参见https://crascit.com/2017/04/18/generated-sources-in-cmake-build 。