CMake is the worse software development build platform, except when compared to all the others.
— Winston Churchill
Snippet
# Visualizzare tutte le variabili di CMake
get_cmake_property(_variableNames VARIABLES)
list (SORT _variableNames)
foreach (_variableName ${_variableNames})
message(STATUS "${_variableName}=${${_variableName}}")
endforeach()