From 30f58bac560de4f1e7918eaf88ff9311220badd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 1 Dec 2019 13:54:18 +0100 Subject: [PATCH] meson: tllist/fcft: oops, forgot to set 'required: false' --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index fe33d497..02579e39 100644 --- a/meson.build +++ b/meson.build @@ -62,14 +62,14 @@ version = custom_target( output: 'version.h', command: [generate_version_sh, meson.project_version(), '@SOURCE_DIR@', '@OUTPUT@']) -tllist_proj = subproject('tllist') +tllist_proj = subproject('tllist', required: false) if tllist_proj.found() tllist = tllist_proj.get_variable('tllist') else tllist = dependency('tllist') endif -fcft_proj = subproject('fcft') +fcft_proj = subproject('fcft', required: false) if fcft_proj.found() fcft = fcft_proj.get_variable('fcft') else