mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
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
12 lines
147 B
Meson
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
|
|
|