2018-08-24 07:35:02 +00:00
|
|
|
backend_parts = []
|
2017-08-11 13:37:09 +00:00
|
|
|
backend_files = files(
|
2017-08-30 18:30:47 +00:00
|
|
|
'backend.c',
|
2017-10-02 08:44:33 +00:00
|
|
|
'drm/atomic.c',
|
2017-08-30 18:30:47 +00:00
|
|
|
'drm/backend.c',
|
|
|
|
'drm/drm.c',
|
2017-10-02 08:44:33 +00:00
|
|
|
'drm/legacy.c',
|
2017-09-30 06:03:34 +00:00
|
|
|
'drm/properties.c',
|
2017-09-30 07:52:58 +00:00
|
|
|
'drm/renderer.c',
|
2017-09-30 06:03:34 +00:00
|
|
|
'drm/util.c',
|
2017-12-17 11:56:42 +00:00
|
|
|
'headless/backend.c',
|
2017-12-17 17:49:20 +00:00
|
|
|
'headless/input_device.c',
|
2018-02-12 20:29:23 +00:00
|
|
|
'headless/output.c',
|
2017-08-30 18:30:47 +00:00
|
|
|
'libinput/backend.c',
|
|
|
|
'libinput/events.c',
|
|
|
|
'libinput/keyboard.c',
|
|
|
|
'libinput/pointer.c',
|
|
|
|
'libinput/tablet_pad.c',
|
|
|
|
'libinput/tablet_tool.c',
|
|
|
|
'libinput/touch.c',
|
|
|
|
'multi/backend.c',
|
2018-02-12 20:29:23 +00:00
|
|
|
'session/direct-ipc.c',
|
|
|
|
'session/session.c',
|
2017-08-30 18:30:47 +00:00
|
|
|
'wayland/backend.c',
|
|
|
|
'wayland/output.c',
|
|
|
|
'wayland/registry.c',
|
|
|
|
'wayland/wl_seat.c',
|
2017-07-17 18:38:28 +00:00
|
|
|
)
|
2017-08-06 01:30:18 +00:00
|
|
|
|
2018-02-10 10:30:47 +00:00
|
|
|
backend_deps = [
|
2018-02-14 18:27:31 +00:00
|
|
|
drm,
|
2018-02-10 10:30:47 +00:00
|
|
|
egl,
|
|
|
|
gbm,
|
|
|
|
libinput,
|
|
|
|
pixman,
|
2018-02-14 18:27:31 +00:00
|
|
|
xkbcommon,
|
|
|
|
wayland_server,
|
|
|
|
wlr_protos,
|
|
|
|
wlr_render,
|
2018-02-10 10:30:47 +00:00
|
|
|
]
|
|
|
|
|
2017-10-09 22:23:43 +00:00
|
|
|
if host_machine.system().startswith('freebsd')
|
|
|
|
backend_files += files('session/direct-freebsd.c')
|
|
|
|
else
|
|
|
|
backend_files += files('session/direct.c')
|
|
|
|
endif
|
|
|
|
|
2018-08-24 07:35:02 +00:00
|
|
|
if logind.found()
|
2017-08-30 18:30:47 +00:00
|
|
|
backend_files += files('session/logind.c')
|
2018-08-24 07:35:02 +00:00
|
|
|
backend_deps += logind
|
2017-08-06 01:30:18 +00:00
|
|
|
endif
|
2017-08-11 13:37:09 +00:00
|
|
|
|
2018-08-24 07:35:02 +00:00
|
|
|
subdir('x11')
|
2018-03-09 14:17:15 +00:00
|
|
|
|
2017-08-30 18:30:47 +00:00
|
|
|
lib_wlr_backend = static_library(
|
|
|
|
'wlr_backend',
|
|
|
|
backend_files,
|
|
|
|
include_directories: wlr_inc,
|
2018-08-24 07:35:02 +00:00
|
|
|
link_whole: backend_parts,
|
2018-02-10 10:30:47 +00:00
|
|
|
dependencies: backend_deps,
|
2017-08-30 18:30:47 +00:00
|
|
|
)
|