Skip to content
Snippets Groups Projects
debug.cmake 182 B
Newer Older
  • Learn to ignore specific revisions
  • ## print all variables
    get_cmake_property(_variableNames VARIABLES)
    foreach (_variableName ${_variableNames})
        message(STATUS "${_variableName}=${${_variableName}}")
    endforeach()