meson build: only link with deps when required by options
This commit is contained in:
parent
161ae2fcb4
commit
435aec0033
|
@ -27,6 +27,17 @@ backend_files = files(
|
|||
'x11/backend.c',
|
||||
)
|
||||
|
||||
backend_deps = [
|
||||
wayland_server,
|
||||
egl,
|
||||
gbm,
|
||||
libinput,
|
||||
wlr_render,
|
||||
wlr_protos,
|
||||
drm,
|
||||
pixman,
|
||||
]
|
||||
|
||||
if host_machine.system().startswith('freebsd')
|
||||
backend_files += files('session/direct-freebsd.c')
|
||||
else
|
||||
|
@ -35,26 +46,17 @@ endif
|
|||
|
||||
if conf_data.get('WLR_HAS_SYSTEMD', false)
|
||||
backend_files += files('session/logind.c')
|
||||
backend_deps += systemd
|
||||
endif
|
||||
|
||||
if conf_data.get('WLR_HAS_ELOGIND', false)
|
||||
backend_files += files('session/logind.c')
|
||||
backend_deps += elogind
|
||||
endif
|
||||
|
||||
lib_wlr_backend = static_library(
|
||||
'wlr_backend',
|
||||
backend_files,
|
||||
include_directories: wlr_inc,
|
||||
dependencies: [
|
||||
wayland_server,
|
||||
egl,
|
||||
gbm,
|
||||
libinput,
|
||||
systemd,
|
||||
elogind,
|
||||
wlr_render,
|
||||
wlr_protos,
|
||||
drm,
|
||||
pixman,
|
||||
],
|
||||
dependencies: backend_deps,
|
||||
)
|
||||
|
|
12
meson.build
12
meson.build
|
@ -70,24 +70,28 @@ systemd = dependency('libsystemd', required: get_option('enable_systemd')
|
|||
elogind = dependency('libelogind', required: get_option('enable_elogind') == 'true')
|
||||
math = cc.find_library('m', required: false)
|
||||
|
||||
exclude_headers = []
|
||||
wlr_parts = []
|
||||
wlr_deps = []
|
||||
|
||||
if xcb_icccm.found()
|
||||
conf_data.set('WLR_HAS_XCB_ICCCM', true)
|
||||
endif
|
||||
|
||||
if libcap.found() and get_option('enable_libcap') != 'false'
|
||||
conf_data.set('WLR_HAS_LIBCAP', true)
|
||||
wlr_deps += libcap
|
||||
endif
|
||||
|
||||
if systemd.found() and get_option('enable_systemd') != 'false'
|
||||
conf_data.set('WLR_HAS_SYSTEMD', true)
|
||||
wlr_deps += systemd
|
||||
endif
|
||||
|
||||
if elogind.found() and get_option('enable_elogind') != 'false'
|
||||
conf_data.set('WLR_HAS_ELOGIND', true)
|
||||
endif
|
||||
|
||||
exclude_headers = []
|
||||
wlr_parts = []
|
||||
if get_option('enable_xwayland')
|
||||
subdir('xwayland')
|
||||
wlr_parts += [lib_wlr_xwayland]
|
||||
|
@ -117,7 +121,7 @@ wlr_parts += [
|
|||
lib_wlr_xcursor,
|
||||
]
|
||||
|
||||
wlr_deps = [
|
||||
wlr_deps += [
|
||||
wayland_server,
|
||||
wayland_client,
|
||||
wayland_egl,
|
||||
|
@ -133,8 +137,6 @@ wlr_deps = [
|
|||
xcb,
|
||||
xcb_composite,
|
||||
x11_xcb,
|
||||
libcap,
|
||||
systemd,
|
||||
math,
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in New Issue