gtk/modules/meson.build
Руслан Ижбулатов 5cdb33d1c4 Alternative printbackends subdir for non-UNIX OSes
The main buildscript expects 'print_backends' list to be defined.
Since printbackends is os_unix-only, we need to define this list
ourselves for other OSes.

https://bugzilla.gnome.org/show_bug.cgi?id=773299
2018-03-28 15:39:36 +08:00

8 lines
87 B
Meson

if os_unix
subdir('printbackends')
else
print_backends = []
endif
subdir('media')