meson: print disabled backends in the final build summary
It's easy to miss what's not getting build otherwise
This commit is contained in:

committed by
Matthias Clasen

parent
47da5607e1
commit
94555371f5
@ -106,6 +106,13 @@ endif
|
||||
|
||||
cdata.set_quoted('GTK_PRINT_BACKENDS', ','.join(print_backends))
|
||||
|
||||
disabled_print_backends = []
|
||||
foreach backend : all_print_backends
|
||||
if not print_backends.contains(backend)
|
||||
disabled_print_backends += [backend]
|
||||
endif
|
||||
endforeach
|
||||
|
||||
# Building
|
||||
|
||||
printbackends_args = [
|
||||
|
Reference in New Issue
Block a user