Files
RedBear-OS/recipes/dev/gdk-pixbuf/source/thumbnailer/meson.build
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

30 lines
1.3 KiB
Meson

bin = executable('gdk-pixbuf-thumbnailer',
[ 'gdk-pixbuf-thumbnailer.c', 'gnome-thumbnailer-skeleton.c' ],
c_args: common_cflags + [
'-DTHUMBNAILER_RETURNS_PIXBUF',
'-DTHUMBNAILER_USAGE="Thumbnail images"',
],
dependencies: gdk_pixbuf_deps + [ gdkpixbuf_dep ],
install: true)
meson.override_find_program('gdk-pixbuf-thumbnailer', bin)
gdk_pixbuf_print_mime_types = executable('gdk-pixbuf-print-mime-types',
'gdk-pixbuf-print-mime-types.c',
c_args: common_cflags,
dependencies: gdk_pixbuf_deps + [ gdkpixbuf_dep ])
custom_target('thumbnailer',
input: 'gdk-pixbuf-thumbnailer.thumbnailer.in',
output: 'gdk-pixbuf-thumbnailer.thumbnailer',
command: [
gen_thumbnailer,
'--printer', gdk_pixbuf_print_mime_types,
'--pixdata', gdk_pixbuf_pixdata,
'--loaders', loaders_cache,
'--bindir', gdk_pixbuf_bindir,
'@INPUT@',
'@OUTPUT@',
],
install: true,
install_dir: join_paths(gdk_pixbuf_datadir, 'thumbnailers'))