diff options
author | emersion <contact@emersion.fr> | 2018-03-30 21:40:43 -0400 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-30 23:51:16 -0400 |
commit | d4f7ced6e260961f701f73f672fffa87ee333c3d (patch) | |
tree | b055739d14a04865adb6483ba7228a47e9b00c1e /backend/meson.build | |
parent | f133170ff0187247b13c227bd2527a273c54f13f (diff) |
backend/x11: refactor, prepare support for multiple outputs
Diffstat (limited to 'backend/meson.build')
-rw-r--r-- | backend/meson.build | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/backend/meson.build b/backend/meson.build index df12d703..52abe64d 100644 --- a/backend/meson.build +++ b/backend/meson.build @@ -50,7 +50,11 @@ if conf_data.get('WLR_HAS_SYSTEMD', false) endif if conf_data.get('WLR_HAS_X11_BACKEND', false) - backend_files += files('x11/backend.c') + backend_files += files( + 'x11/backend.c', + 'x11/input_device.c', + 'x11/output.c', + ) backend_deps += xcb_xkb endif |