CMake: Pad the configure summary string with one more dot

This makes the diff-ing of the config summary between qmake and CMake
builds correct.

Change-Id: I720b69572c23afd78e6d0bea6cdf0740980c3b36
Reviewed-by: Cristian Adam <cristian.adam@qt.io>
This commit is contained in:
Alexandru Croitor 2020-10-22 16:23:25 +02:00
parent 9ff9a54bfb
commit 9a7de1abf5

View File

@ -132,7 +132,7 @@ macro(qt_configure_add_report_padded label message)
endmacro()
function(qt_configure_get_padded_string label value out_var)
set(pad_string "........................................")
set(pad_string ".........................................")
string(LENGTH "${label}" label_len)
string(LENGTH "${pad_string}" pad_len)
math(EXPR pad_len "${pad_len}-${label_len}")