labwc/src/button/meson.build
Johan Malm 715405fe29 build: make svg buttons optional
Add -Dsvg=disabled to your meson setup/configure command to disable svg
buttons even if the correct version of librsvg is available.

Note that regardless of this patch and the value of the 'svg' variable,
the build will gracefully fall back to not using librsvg if the correct
version is not available.

Helped-by: @01micko
2023-09-17 19:26:41 +01:00

12 lines
147 B
Meson

labwc_sources += files(
'button-png.c',
'button-xbm.c',
'common.c',
)
if have_rsvg
labwc_sources += files(
'button-svg.c',
)
endif