2017-08-30 20:30:47 +02:00
|
|
|
lib_wlr_xwayland = static_library(
|
|
|
|
'wlr_xwayland',
|
|
|
|
files(
|
2018-04-03 18:12:57 +02:00
|
|
|
'selection/dnd.c',
|
|
|
|
'selection/incoming.c',
|
|
|
|
'selection/outgoing.c',
|
|
|
|
'selection/selection.c',
|
2017-08-30 20:30:47 +02:00
|
|
|
'sockets.c',
|
|
|
|
'xwayland.c',
|
|
|
|
'xwm.c',
|
|
|
|
),
|
|
|
|
include_directories: wlr_inc,
|
2017-10-15 20:50:21 +02:00
|
|
|
dependencies: [
|
|
|
|
wayland_server,
|
|
|
|
xcb,
|
|
|
|
xcb_composite,
|
|
|
|
xcb_xfixes,
|
2017-11-02 00:03:55 +01:00
|
|
|
xcb_image,
|
2017-11-02 15:52:02 +01:00
|
|
|
xcb_render,
|
2017-10-15 20:50:21 +02:00
|
|
|
xcb_icccm,
|
2018-03-03 11:37:02 +01:00
|
|
|
xcb_errors,
|
2018-02-14 19:27:31 +01:00
|
|
|
xkbcommon,
|
2017-10-15 20:50:21 +02:00
|
|
|
pixman,
|
|
|
|
],
|
2017-08-30 20:30:47 +02:00
|
|
|
)
|