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:
authorCampbell Barton <campbell@blender.org>2022-10-08 05:15:09 +0300
committerCampbell Barton <campbell@blender.org>2022-10-08 05:16:11 +0300
commit18c045a35fc4352b43cf200db488a73677aa053e (patch)
tree46bf8408c202d3793a8d44ead13e6c73337e4d10 /CMakeLists.txt
parent3d209d161988d6000c2f99fa4051f9a117ffbfd5 (diff)
Build: show X11 & Wayland options on first run
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt22
1 files changed, 19 insertions, 3 deletions
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)