diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2023-01-22 09:21:12 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2023-01-22 09:21:12 +0000 |
commit | 5137be12226ec726cde8f1b16f38c9d0f63c8281 (patch) | |
tree | 2fa203cf313cd57f13dba789aae25c5cdf0aaf9b /xserver/hw/meson.build | |
parent | 2ca49aa841311a3b1769ec80cd148c2b7d1c7501 (diff) |
Add back the meson build system to xserver.
Not having those file only create noise when merging upstream releases.
Diffstat (limited to 'xserver/hw/meson.build')
-rw-r--r-- | xserver/hw/meson.build | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/xserver/hw/meson.build b/xserver/hw/meson.build new file mode 100644 index 000000000..f8bd28a25 --- /dev/null +++ b/xserver/hw/meson.build @@ -0,0 +1,23 @@ +if get_option('xephyr') + subdir('kdrive') +endif + +if get_option('xvfb') + subdir('vfb') +endif + +if build_xnest + subdir('xnest') +endif + +if build_xorg + subdir('xfree86') +endif + +if build_xquartz + subdir('xquartz') +endif + +if build_xwin + subdir('xwin') +endif |