2018-08-24 09:35:02 +02:00
|
|
|
backend_parts = []
|
2017-08-11 15:37:09 +02:00
|
|
|
backend_files = files(
|
2017-08-30 20:30:47 +02:00
|
|
|
'backend.c',
|
2017-10-02 10:44:33 +02:00
|
|
|
'drm/atomic.c',
|
2017-08-30 20:30:47 +02:00
|
|
|
'drm/backend.c',
|
2019-10-26 22:35:51 +02:00
|
|
|
'drm/cvt.c',
|
2017-08-30 20:30:47 +02:00
|
|
|
'drm/drm.c',
|
2017-10-02 10:44:33 +02:00
|
|
|
'drm/legacy.c',
|
2017-09-30 08:03:34 +02:00
|
|
|
'drm/properties.c',
|
2017-09-30 09:52:58 +02:00
|
|
|
'drm/renderer.c',
|
2017-09-30 08:03:34 +02:00
|
|
|
'drm/util.c',
|
2017-12-17 12:56:42 +01:00
|
|
|
'headless/backend.c',
|
2017-12-17 18:49:20 +01:00
|
|
|
'headless/input_device.c',
|
2018-02-12 21:29:23 +01:00
|
|
|
'headless/output.c',
|
2017-08-30 20:30:47 +02:00
|
|
|
'libinput/backend.c',
|
|
|
|
'libinput/events.c',
|
|
|
|
'libinput/keyboard.c',
|
|
|
|
'libinput/pointer.c',
|
2018-11-15 00:24:55 +01:00
|
|
|
'libinput/switch.c',
|
2017-08-30 20:30:47 +02:00
|
|
|
'libinput/tablet_pad.c',
|
|
|
|
'libinput/tablet_tool.c',
|
|
|
|
'libinput/touch.c',
|
|
|
|
'multi/backend.c',
|
2019-01-17 11:13:55 +01:00
|
|
|
'noop/backend.c',
|
|
|
|
'noop/output.c',
|
2018-02-12 21:29:23 +01:00
|
|
|
'session/direct-ipc.c',
|
2019-03-01 22:37:35 +01:00
|
|
|
'session/noop.c',
|
2018-02-12 21:29:23 +01:00
|
|
|
'session/session.c',
|
2017-08-30 20:30:47 +02:00
|
|
|
'wayland/backend.c',
|
|
|
|
'wayland/output.c',
|
|
|
|
'wayland/wl_seat.c',
|
2019-05-10 08:36:19 +02:00
|
|
|
'wayland/tablet_v2.c',
|
2017-07-17 20:38:28 +02:00
|
|
|
)
|
2017-08-06 03:30:18 +02:00
|
|
|
|
2018-02-10 11:30:47 +01:00
|
|
|
backend_deps = [
|
2018-02-14 19:27:31 +01:00
|
|
|
drm,
|
2018-02-10 11:30:47 +01:00
|
|
|
egl,
|
|
|
|
gbm,
|
|
|
|
libinput,
|
|
|
|
pixman,
|
2018-02-14 19:27:31 +01:00
|
|
|
xkbcommon,
|
|
|
|
wayland_server,
|
|
|
|
wlr_protos,
|
|
|
|
wlr_render,
|
2018-02-10 11:30:47 +01:00
|
|
|
]
|
|
|
|
|
2017-10-10 00:23:43 +02: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 09:35:02 +02:00
|
|
|
if logind.found()
|
2017-08-30 20:30:47 +02:00
|
|
|
backend_files += files('session/logind.c')
|
2018-08-24 09:35:02 +02:00
|
|
|
backend_deps += logind
|
2017-08-06 03:30:18 +02:00
|
|
|
endif
|
2017-08-11 15:37:09 +02:00
|
|
|
|
2019-02-22 19:58:52 +01:00
|
|
|
if freerdp.found() and winpr2.found()
|
|
|
|
backend_files += files(
|
|
|
|
'rdp/backend.c',
|
|
|
|
'rdp/keyboard.c',
|
|
|
|
'rdp/listener.c',
|
|
|
|
'rdp/output.c',
|
|
|
|
'rdp/peer.c',
|
|
|
|
'rdp/pointer.c',
|
|
|
|
)
|
|
|
|
backend_deps += [
|
|
|
|
freerdp,
|
|
|
|
winpr2
|
|
|
|
]
|
|
|
|
conf_data.set10('WLR_HAS_RDP_BACKEND', true)
|
|
|
|
endif
|
|
|
|
|
2018-08-24 09:35:02 +02:00
|
|
|
subdir('x11')
|
2018-03-09 15:17:15 +01:00
|
|
|
|
2017-08-30 20:30:47 +02:00
|
|
|
lib_wlr_backend = static_library(
|
|
|
|
'wlr_backend',
|
|
|
|
backend_files,
|
|
|
|
include_directories: wlr_inc,
|
2018-08-24 09:35:02 +02:00
|
|
|
link_whole: backend_parts,
|
2018-02-10 11:30:47 +01:00
|
|
|
dependencies: backend_deps,
|
2017-08-30 20:30:47 +02:00
|
|
|
)
|