summaryrefslogtreecommitdiffstats
path: root/rules/host-gdk-pixbuf.make
blob: 3fe332782bd639d8c8a49d6557631c57479d4b88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*-makefile-*-
#
# Copyright (C) 2020 by Michael Olbrich <m.olbrich@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_GDK_PIXBUF) += host-gdk-pixbuf

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# meson
#
HOST_GDK_PIXBUF_CONF_TOOL	:= meson
HOST_GDK_PIXBUF_CONF_OPT	:=  \
	$(HOST_MESON_OPT) \
	-Dbuiltin_loaders=png \
	-Ddocs=false \
	-Dgio_sniffing=false \
	-Dgtk_doc=false \
	-Dinstalled_tests=false \
	-Dintrospection=disabled \
	-Djpeg=disabled \
	-Dman=false \
	-Dnative_windows_loaders=false \
	-Dpng=enabled \
	-Drelocatable=false \
	-Dtests=false \
	-Dtiff=disabled

# vim: syntax=make