diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-30 17:45:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-30 17:45:21 -0500 |
commit | e91c91d45544d7bd435e7628dcafaa346c5310b9 (patch) | |
tree | 860263145d196bd57006fec7b4dff582f74b4147 /xwayland/meson.build | |
parent | 6daf9e9ab2bb6e11987d3b2562fc053fd0f489c1 (diff) | |
parent | 368f74e4dfab7d58293ef7d6214e6cdbe94e4fdd (diff) |
Merge pull request #129 from acrisci/feature/refactor-meson-files
Reformat meson build files
Diffstat (limited to 'xwayland/meson.build')
-rw-r--r-- | xwayland/meson.build | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/xwayland/meson.build b/xwayland/meson.build index dbad27bb..9797a1a1 100644 --- a/xwayland/meson.build +++ b/xwayland/meson.build @@ -1,7 +1,10 @@ -lib_wlr_xwayland = static_library('wlr_xwayland', files( - 'sockets.c', - 'xwayland.c', - 'xwm.c', - ), - include_directories: wlr_inc, - dependencies: [wayland_server, xcb, xcb_composite, pixman]) +lib_wlr_xwayland = static_library( + 'wlr_xwayland', + files( + 'sockets.c', + 'xwayland.c', + 'xwm.c', + ), + include_directories: wlr_inc, + dependencies: [wayland_server, xcb, xcb_composite, pixman], +) |