* meson.build: Minor improvements.

This commit is contained in:
Benoit Pierre 2024-10-12 10:51:25 +00:00 committed by Alexei Podtelezhnikov
parent 34aed655f1
commit 78ff353509
1 changed files with 5 additions and 5 deletions

View File

@ -486,10 +486,10 @@ summary({'OS': host_machine.system(),
}, section: 'Operating System')
summary({'Zlib': zlib_option,
'Bzip2': bzip2_dep.found() ? 'yes' : 'no',
'Png': libpng_dep.found() ? 'yes' : 'no',
'Harfbuzz': harfbuzz_dep.found() ? 'yes' : 'no',
'Brotli': brotli_dep.found() ? 'yes' : 'no',
}, section: 'Used Libraries')
'Bzip2': bzip2_dep.found(),
'Png': libpng_dep.found(),
'Harfbuzz': harfbuzz_dep.found(),
'Brotli': brotli_dep.found(),
}, bool_yn: true, section: 'Used Libraries')
# EOF