1
0
Fork 0
gimp/gimp-data/tools/meson.build
Daniel Baumann 554424e00a
Adding upstream version 3.0.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 00:14:50 +02:00

13 lines
413 B
Meson

colorsvg2png = executable('colorsvg2png',
'colorsvg2png.c',
native: true,
dependencies: [
native_glib,
native_rsvg
],
# In case b_sanitize was set, we don't really care if the tool has issues (in
# particular we experienced some memory leaks with b_sanitize=address, within
# librsvg and we don't want this to break the build).
override_options: [ 'b_sanitize=none' ],
install: false,
)