fix echo_all_cmake_variable_values function

clean up the output
This commit is contained in:
Stefani Seibold 2017-12-19 11:18:31 +01:00
parent 4ce01bc3fe
commit 4c5f0c20b4

View File

@ -123,11 +123,9 @@ endfunction()
function(echo_all_cmake_variable_values) function(echo_all_cmake_variable_values)
message(STATUS “”)
get_cmake_property(vs VARIABLES) get_cmake_property(vs VARIABLES)
foreach(v ${vs}) foreach(v ${vs})
message(STATUS ${v}=${${v}}'”) message(STATUS "${v}='${${v}}'")
endforeach(v) endforeach(v)
message(STATUS “”)
endfunction() endfunction()