mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-09 08:21:01 -04:00
meson: tllist/fcft: oops, forgot to set 'required: false'
This commit is contained in:
parent
526f65a392
commit
30f58bac56
1 changed files with 2 additions and 2 deletions
|
|
@ -62,14 +62,14 @@ version = custom_target(
|
||||||
output: 'version.h',
|
output: 'version.h',
|
||||||
command: [generate_version_sh, meson.project_version(), '@SOURCE_DIR@', '@OUTPUT@'])
|
command: [generate_version_sh, meson.project_version(), '@SOURCE_DIR@', '@OUTPUT@'])
|
||||||
|
|
||||||
tllist_proj = subproject('tllist')
|
tllist_proj = subproject('tllist', required: false)
|
||||||
if tllist_proj.found()
|
if tllist_proj.found()
|
||||||
tllist = tllist_proj.get_variable('tllist')
|
tllist = tllist_proj.get_variable('tllist')
|
||||||
else
|
else
|
||||||
tllist = dependency('tllist')
|
tllist = dependency('tllist')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
fcft_proj = subproject('fcft')
|
fcft_proj = subproject('fcft', required: false)
|
||||||
if fcft_proj.found()
|
if fcft_proj.found()
|
||||||
fcft = fcft_proj.get_variable('fcft')
|
fcft = fcft_proj.get_variable('fcft')
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue