我想知道是否有一种方法可以打印出CMake中所有可访问的变量。我对CMake变量不感兴趣——就像在——help-variables选项中一样。我说的是我定义的变量,或者是包含脚本定义的变量。

我目前包括:

INCLUDE (${CMAKE_ROOT}/Modules/CMakeBackwardCompatibilityCXX.cmake)

我希望我可以打印出这里所有的变量,而不是浏览所有的文件并读取可用的-我可能会发现一些我不知道的变量可能有用。这将有助于学习和发现。它严格用于调试/开发。

这类似于在Lua中打印当前范围内可访问的所有局部变量的问题,但对于CMake!

有人这样做过吗?


当前回答

当前的答案都不允许我查看项目子目录中的变量。这里有一个解决方案:

function(print_directory_variables dir)
    # Dump variables:
    get_property(_variableNames DIRECTORY ${dir} PROPERTY VARIABLES)
    list (SORT _variableNames)
    foreach (_variableName ${_variableNames})
        get_directory_property(_variableValue DIRECTORY ${dir} DEFINITION ${_variableName})
        message(STATUS "DIR ${dir}: ${_variableName}=${_variableValue}")
    endforeach()
endfunction(print_directory_variables)

# for example
print_directory_variables(.)
print_directory_variables(ui/qt)

其他回答

ccmake是一个很好的交互选项,可以交互地检查缓存的变量(option(或set(CACHE:

sudo apt-get install cmake-curses-gui
mkdir build
cd build
cmake ..
ccmake ..

你可以使用message:

message([STATUS] "SUB_SOURCES : ${SUB_SOURCES}")

基于@sakra

function(dump_cmake_variables)
    get_cmake_property(_variableNames VARIABLES)
    list (SORT _variableNames)
    foreach (_variableName ${_variableNames})
        if (ARGV0)
            unset(MATCHED)

            #case sensitive match
            # string(REGEX MATCH ${ARGV0} MATCHED ${_variableName})
            #
            #case insenstitive match
            string( TOLOWER "${ARGV0}" ARGV0_lower )
            string( TOLOWER "${_variableName}" _variableName_lower )
            string(REGEX MATCH ${ARGV0_lower} MATCHED ${_variableName_lower})

            if (NOT MATCHED)
                continue()
            endif()
        endif()
        message(STATUS "${_variableName}=${${_variableName}}")
    endforeach()
endfunction()

dump_cmake_variables("^Boost")

变量名区分大小写

顺便说一句,如果你对boost感兴趣,它是Boost_INCLUDE_DIRS而不是Boost_INCLUDE_DIRS,它是Boost_LIBRARIES而不是Boost_LIBRARIES,并且错误地我有Boost_LIBRARIES而不是Boost_LIBRARIES, https://cmake.org/cmake/help/v3.0/module/FindBoost.html,更好的boost示例:

set(Boost_USE_STATIC_LIBS ON)
find_package(Boost REQUIRED COMPONENTS RANDOM)
include_directories(${Boost_INCLUDE_DIRS})

target_link_libraries(myfile PRIVATE
 ${Boost_LIBRARIES}
)

另一种方法是简单地使用:

cmake -LAH

从手册中:

- l [] [H] 列出非高级缓存变量。 列表缓存变量将运行CMake,并从CMake缓存中列出所有未标记为INTERNAL或ADVANCED的变量。这将有效地显示当前CMake设置[…]。 如果指定了A,那么它也会显示高级变量。 如果指定了H,它还将显示每个变量的帮助。

当前的答案都不允许我查看项目子目录中的变量。这里有一个解决方案:

function(print_directory_variables dir)
    # Dump variables:
    get_property(_variableNames DIRECTORY ${dir} PROPERTY VARIABLES)
    list (SORT _variableNames)
    foreach (_variableName ${_variableNames})
        get_directory_property(_variableValue DIRECTORY ${dir} DEFINITION ${_variableName})
        message(STATUS "DIR ${dir}: ${_variableName}=${_variableValue}")
    endforeach()
endfunction(print_directory_variables)

# for example
print_directory_variables(.)
print_directory_variables(ui/qt)