[Bf-blender-cvs] [bf3e2656ac8] temp-lineart-embree: CMake: Give some extra space to info_cfg_option

Ray Molenkamp noreply at git.blender.org
Sat Mar 26 17:10:59 CET 2022


Commit: bf3e2656ac832dc6bbca49ebd7d58d2d528aad0c
Author: Ray Molenkamp
Date:   Fri Mar 25 14:33:39 2022 -0600
Branches: temp-lineart-embree
https://developer.blender.org/rBbf3e2656ac832dc6bbca49ebd7d58d2d528aad0c

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.

===================================================================

M	CMakeLists.txt

===================================================================

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()



More information about the Bf-blender-cvs mailing list