CMake: Give some extra space to info_cfg_option

WITH_PYTHON_INSTALL_ZSTANDARD was too long and
didn't align very well compared to the other
items in the list.
This commit is contained in:
Ray Molenkamp 2022-03-25 14:33:39 -06:00
parent ba49345705
commit 6bf51ab03a

@ -1974,7 +1974,7 @@ if(FIRST_RUN)
set(_msg " - ${_setting}") set(_msg " - ${_setting}")
string(LENGTH "${_msg}" _len) string(LENGTH "${_msg}" _len)
while("32" GREATER "${_len}") while("36" GREATER "${_len}")
string(APPEND _msg " ") string(APPEND _msg " ")
math(EXPR _len "${_len} + 1") math(EXPR _len "${_len} + 1")
endwhile() endwhile()