Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2022-03-25 23:33:39 +0300
committerRay Molenkamp <github@lazydodo.com>2022-03-25 23:33:39 +0300
commit6bf51ab03a066f8cf37a061ceb8d5c12bd6ea88d (patch)
tree2b2293401f7c351e5f7ca702356f4acd83234876
parentba49345705a3fc8ad8e5f4336ea960aec67f534e (diff)
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.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c7b1558fe2d..ca457ab6b37 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1974,7 +1974,7 @@ if(FIRST_RUN)
set(_msg " - ${_setting}")
string(LENGTH "${_msg}" _len)
- while("32" GREATER "${_len}")
+ while("36" GREATER "${_len}")
string(APPEND _msg " ")
math(EXPR _len "${_len} + 1")
endwhile()