Skip to content
Snippets Groups Projects
Helpers.cmake 229 B
Newer Older
  • Learn to ignore specific revisions
  • 
    function(dump_vars)
      get_cmake_property(_variableNames VARIABLES)
      list (SORT _variableNames)
      foreach (_variableName ${_variableNames})
        message(STATUS "${_variableName}=${${_variableName}}")
      endforeach()
    endfunction()