diff options
author | emersion <contact@emersion.fr> | 2018-01-24 18:40:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 18:40:05 +0100 |
commit | 4dd214c0d30b4ac0e6645b56faf28fe05cd4e8a2 (patch) | |
tree | cf9b4648200ec34e8f65913a111d5bbcf98a4ead | |
parent | 7a2e9a17bae919088f4265961ad8d00fece7b870 (diff) | |
parent | 66ab1a98a0cf9312aa0c6507c273b17040c95b09 (diff) |
Merge pull request #583 from agx/meson
meson: print enabled options
-rw-r--r-- | meson.build | 16 |
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') |