wlroots/types/meson.build

64 lines
1.6 KiB
Meson
Raw Normal View History

lib_wlr_types = static_library(
'wlr_types',
files(
2018-05-02 08:07:22 +00:00
'data_device/wlr_data_device.c',
'data_device/wlr_data_offer.c',
'data_device/wlr_data_source.c',
'data_device/wlr_drag.c',
2018-05-02 09:03:26 +00:00
'seat/wlr_seat_keyboard.c',
'seat/wlr_seat_pointer.c',
'seat/wlr_seat_touch.c',
'seat/wlr_seat.c',
2018-05-14 21:28:45 +00:00
'xdg_shell/wlr_xdg_popup.c',
'xdg_shell/wlr_xdg_positioner.c',
'xdg_shell/wlr_xdg_shell.c',
'xdg_shell/wlr_xdg_surface.c',
'xdg_shell/wlr_xdg_toplevel.c',
'xdg_shell_v6/wlr_xdg_popup_v6.c',
'xdg_shell_v6/wlr_xdg_positioner_v6.c',
'xdg_shell_v6/wlr_xdg_shell_v6.c',
'xdg_shell_v6/wlr_xdg_surface_v6.c',
'xdg_shell_v6/wlr_xdg_toplevel_v6.c',
2017-10-22 02:00:04 +00:00
'wlr_box.c',
'wlr_buffer.c',
2017-10-22 02:00:04 +00:00
'wlr_compositor.c',
'wlr_cursor.c',
'wlr_export_dmabuf_v1.c',
2017-10-22 02:00:04 +00:00
'wlr_gamma_control.c',
'wlr_gamma_control_v1.c',
2018-03-15 08:11:03 +00:00
'wlr_idle_inhibit_v1.c',
'wlr_idle.c',
'wlr_input_device.c',
2018-04-03 14:50:16 +00:00
'wlr_input_inhibitor.c',
'wlr_keyboard.c',
2018-09-14 17:32:33 +00:00
'wlr_layer_shell_v1.c',
'wlr_linux_dmabuf_v1.c',
2017-10-22 02:00:04 +00:00
'wlr_list.c',
2018-03-15 08:11:03 +00:00
'wlr_matrix.c',
2018-02-11 11:49:30 +00:00
'wlr_output_damage.c',
'wlr_output_layout.c',
2018-02-12 20:29:23 +00:00
'wlr_output.c',
'wlr_pointer.c',
'wlr_primary_selection.c',
'wlr_region.c',
2017-10-22 02:00:04 +00:00
'wlr_screenshooter.c',
2017-10-24 19:56:18 +00:00
'wlr_server_decoration.c',
'wlr_surface.c',
'tablet_v2/wlr_tablet_v2.c',
'tablet_v2/wlr_tablet_v2_pad.c',
'tablet_v2/wlr_tablet_v2_tablet.c',
'tablet_v2/wlr_tablet_v2_tool.c',
'wlr_tablet_pad.c',
'wlr_tablet_tool.c',
'wlr_touch.c',
'wlr_virtual_keyboard_v1.c',
'wlr_wl_shell.c',
2017-11-12 10:10:56 +00:00
'wlr_xcursor_manager.c',
2018-06-10 10:15:26 +00:00
'wlr_xdg_decoration_v1.c',
2018-09-14 17:29:08 +00:00
'wlr_xdg_output_v1.c',
'wlr_screencopy_v1.c',
),
include_directories: wlr_inc,
dependencies: [pixman, xkbcommon, wayland_server, wlr_protos, libinput],
)