是否可以将安装后命令添加到cmake生成的顶级Makefile中?

时间:2012-04-03 17:53:31

标签: cmake

cmake为安装规则生成以下内容:

# Special rule for the target install
install: preinstall
        @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
        /usr/local/bin/cmake -P cmake_install.cmake
.PHONY : install

我想要做的是在调用cmake_install.cmake后执行一些自定义命令,使其看起来像:

# Special rule for the target install
install: preinstall
        @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
        /usr/local/bin/cmake -P cmake_install.cmake
        post_install_command_1
        ...
        post_install_command_n
.PHONY : install

对于我们编写的内容(6-10个要更新的宏),我可以使用“add_custom_command(TARGET ... POST_BUILD ...)”执行我想要的操作。但是,有很多第三方的东西安装完毕,我真的不想为所有这些东西添加POST_BUILD自定义命令(目前有19个项目有更多的东西,很难确定需要处理什么建成后而不是安装后)。我认为如果自定义命令仅在一个地方使用(即作为安装处理的最后一部分)并且我知道他们将完成所有必要的操作,那么维护会更容易。

是否可以让cmake将命令添加到顶级Makefile的安装规则中?

2 个答案:

答案 0 :(得分:9)

您可以使用install命令的SCRIPTCODE变体。如果将所需命令放在项目根目录中的脚本PostInstall.cmake中,请将以下调用添加到最外层CMakeLists.txt

install (SCRIPT "${CMAKE_SOURCE_DIR}/PostInstall.cmake")

install命令按顺序添加到cmake_install.cmake脚本中,因此应将调用添加到CMakeLists.txt的末尾,以便在所有其他安装完成后运行它。 / p>

答案 1 :(得分:4)

要添加安装后步骤,您需要在顶级CMakeLists.txt中添加目录。您必须拥有一个包含CMakeLists.txt的目录,以便设置安装后最后执行的安装后步骤。

第一步是添加安装后脚本要使用的变量和值。构建期间可用的所有变量都不会在安装后可用,因此您需要的所有内容都必须在此处设置。

在顶级CMakeLists.txt中,执行完所有先前的add_subdirectory命令后,添加如下内容。

# Workaround for the lack of post_install steps.
# add_subdirectory is executed in order, this one must be last.
if(CMAKE_PROGRAM_PREFIX)
    # Make sure this is the LAST directory added.
    add_subdirectory(${CMAKE_SOURCE_DIR}/cmake/postinstall)
    # Add any variables you need during post install.
    install(CODE "set(CMAKE_PROGRAM_PREFIX \"${CMAKE_PROGRAM_PREFIX}\")")
    # Add any properties to your post install.
    get_property(PROGRAM_PREFIX_FILES GLOBAL PROPERTY PROGRAM_PREFIX_FILES)
    install(CODE "set(PROGRAM_PREFIX_FILES \"${PROGRAM_PREFIX_FILES}\")")
endif()

现在我们有变量,并且属性转换为可在安装后使用的变量。

接下来,我们需要在postinstall目录中有一个CMakeLists.txt文件。 Cmake将在构建结束时执行此文件。那时我们安装了一个SCRIPT来完成安装后的工作。

# CMake will execute this last in the build.
# Install the script that does the post install work.
install(SCRIPT "${CMAKE_SOURCE_DIR}/cmake/postinstall/ProgramPrefix.cmake")

现在我们将在ProgramPrefix.cmake中安装后获得控制权。 CMake将添加我们之前设置的变量。

# Make sure this was requested.
if(CMAKE_PROGRAM_PREFIX)
    # CMake builds a manifest of all files it has installed.
    foreach(file ${CMAKE_INSTALL_MANIFEST_FILES})
        # Make a list of installed files to compare.
        get_filename_component(nm ${file} NAME)
        list(APPEND fileindex ${nm})
    endforeach()

    # Process program prefix files.
    foreach(nm ${PROGRAM_PREFIX_FILES})
        list(FIND fileindex ${nm} efound)
        # Did we match a manifest file with our list of files?
        if(NOT efound LESS 0)
            # Process the file.
            program_prefix_file(${efound})
        endif()
    endforeach()
endif()

实际执行程序前缀还有一些工作要做,但是这个框架可以让你在安装完一切后执行cmake命令。