aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2018-01-24 16:56:08 +0000
committerGuido Günther <agx@sigxcpu.org>2018-01-24 18:24:13 +0100
commit66ab1a98a0cf9312aa0c6507c273b17040c95b09 (patch)
tree08bb6bf34196a76ad49326513e5551a266d5d4d5
parent03440bbd83b5d68404db8ebc2df310ec0f8c9b32 (diff)
meson: print enabled options
This makes it simpler to figure out what was enabled.
-rw-r--r--meson.build16
1 files changed, 16 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index aee4b11b..b86030a6 100644
--- a/meson.build
+++ b/meson.build
@@ -153,6 +153,22 @@ wlroots = declare_dependency(
include_directories: wlr_inc,
)
+
+summary = [
+ '',
+ '----------------',
+ 'wlroots @0@'.format(meson.project_version()),
+ '',
+ ' libcap: @0@'.format(get_option('enable_libcap')),
+ ' systemd: @0@'.format(get_option('enable_systemd')),
+ ' elogind: @0@'.format(get_option('enable_elogind')),
+ ' xwayland: @0@'.format(get_option('enable_xwayland')),
+ '----------------',
+ ''
+]
+message('\n'.join(summary))
+
+
subdir('rootston')
subdir('examples')