[Bf-blender-cvs] [18c045a35fc] master: Build: show X11 & Wayland options on first run

Campbell Barton noreply at git.blender.org
Sat Oct 8 04:16:56 CEST 2022


Commit: 18c045a35fc4352b43cf200db488a73677aa053e
Author: Campbell Barton
Date:   Sat Oct 8 13:15:09 2022 +1100
Branches: master
https://developer.blender.org/rB18c045a35fc4352b43cf200db488a73677aa053e

Build: show X11 & Wayland options on first run

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

M	CMakeLists.txt

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

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8bb685195bd..e02eee8ce35 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1913,9 +1913,25 @@ if(FIRST_RUN)
   info_cfg_option(WITH_INSTALL_PORTABLE)
   info_cfg_option(WITH_MEM_JEMALLOC)
   info_cfg_option(WITH_MEM_VALGRIND)
-  info_cfg_option(WITH_X11_XF86VMODE)
-  info_cfg_option(WITH_X11_XFIXES)
-  info_cfg_option(WITH_X11_XINPUT)
+
+  info_cfg_text("GHOST Options:")
+  info_cfg_option(WITH_GHOST_DEBUG)
+  info_cfg_option(WITH_GHOST_SDL)
+  if(UNIX AND NOT APPLE)
+    info_cfg_option(WITH_GHOST_X11)
+    info_cfg_option(WITH_GHOST_WAYLAND)
+    if(WITH_GHOST_X11)
+      info_cfg_option(WITH_GHOST_XDND)
+      info_cfg_option(WITH_X11_XF86VMODE)
+      info_cfg_option(WITH_X11_XFIXES)
+      info_cfg_option(WITH_X11_XINPUT)
+    endif()
+    if(WITH_GHOST_WAYLAND)
+      info_cfg_option(WITH_GHOST_WAYLAND_DYNLOAD)
+      info_cfg_option(WITH_GHOST_WAYLAND_LIBDECOR)
+      info_cfg_option(WITH_GHOST_WAYLAND_DBUS)
+    endif()
+  endif()
 
   info_cfg_text("Image Formats:")
   info_cfg_option(WITH_IMAGE_CINEON)



More information about the Bf-blender-cvs mailing list