Skip to content
Snippets Groups Projects
Commit c016af12 authored by Lars Bilke's avatar Lars Bilke
Browse files

Added CMake variables value list script.

parent b421af12
No related branches found
No related tags found
No related merge requests found
# From http://www.kitware.com/blog/home/post/300
#
# Usage:
#
# INCLUDE(ListAllCMakeVariabelValues)
# list_all_cmake_variable_values()
function(list_all_cmake_variable_values)
message(STATUS "")
get_cmake_property(vs VARIABLES)
foreach(v ${vs})
message(STATUS "${v}='${${v}}'")
endforeach(v)
message(STATUS "")
endfunction()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment