mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-22 12:25:38 +02:00
meson: group tllist/fcft with the other system dependencies
This commit is contained in:
parent
64844a8937
commit
331f7d0be2
1 changed files with 4 additions and 3 deletions
|
@ -34,6 +34,10 @@ wayland_cursor = dependency('wayland-cursor', required: get_option('backend-wayl
|
|||
wlroots = dependency('wlroots', required: get_option('backend-wayland'))
|
||||
backend_wayland = wayland_client.found() and wayland_cursor.found() and wlroots.found()
|
||||
|
||||
# "My" dependencies, fallback to subproject
|
||||
tllist = dependency('tllist', fallback: ['tllist', 'tllist'])
|
||||
fcft = dependency('fcft', fallback: ['fcft', 'fcft'])
|
||||
|
||||
add_project_arguments(
|
||||
['-D_GNU_SOURCE'] +
|
||||
(is_debug_build ? ['-D_DEBUG'] : []) +
|
||||
|
@ -55,9 +59,6 @@ if backend_x11
|
|||
install_headers('xcb.h', subdir: 'yambar')
|
||||
endif
|
||||
|
||||
tllist = dependency('tllist', fallback: ['tllist', 'tllist'])
|
||||
fcft = dependency('fcft', fallback: ['fcft', 'fcft'])
|
||||
|
||||
subdir('completions')
|
||||
subdir('doc')
|
||||
subdir('bar')
|
||||
|
|
Loading…
Add table
Reference in a new issue