From 331f7d0be28a1aa88c42d9108dff5193d9e863d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 1 Dec 2019 16:09:49 +0100 Subject: [PATCH] meson: group tllist/fcft with the other system dependencies --- meson.build | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 74a210b..c07298c 100644 --- a/meson.build +++ b/meson.build @@ -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')