[fixup] make xpm optional at build time (default disabled)

This commit is contained in:
Johan Malm 2024-09-29 15:09:05 +01:00
parent 7366bdcef9
commit 24cbd2fc5c
4 changed files with 18 additions and 1 deletions

View file

@ -1,9 +1,14 @@
labwc_sources += files(
'img-png.c',
'img-xbm.c',
'img-xpm.c',
)
if have_xpm
labwc_sources += files(
'img-xpm.c',
)
endif
if have_rsvg
labwc_sources += files(
'img-svg.c',