mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
meson: Split single-line dependencies to reduce the diff on changes
Make it more readable and in case we add something else, it's easier to track
This commit is contained in:
@@ -233,14 +233,21 @@ libfprint = library('fprint',
|
||||
libfprint_dep = declare_dependency(link_with: libfprint,
|
||||
sources: [ fp_enums_h ],
|
||||
include_directories: root_inc,
|
||||
dependencies: [ glib_dep, gusb_dep, gio_dep ])
|
||||
dependencies: [
|
||||
gio_dep,
|
||||
glib_dep,
|
||||
gusb_dep,
|
||||
])
|
||||
|
||||
install_headers(['fprint.h'] + libfprint_public_headers, subdir: 'libfprint')
|
||||
|
||||
libfprint_private_dep = declare_dependency(
|
||||
include_directories: include_directories('.'),
|
||||
link_with: libfprint_private,
|
||||
dependencies: [ deps, libfprint_dep ]
|
||||
dependencies: [
|
||||
deps,
|
||||
libfprint_dep,
|
||||
]
|
||||
)
|
||||
|
||||
udev_rules = executable('fprint-list-udev-rules',
|
||||
|
||||
Reference in New Issue
Block a user