Require libpng and libjpeg

This commit is contained in:
Fries 2022-04-20 23:38:40 -07:00
parent 542fc86a07
commit f02beb1cc6
3 changed files with 7 additions and 1 deletions

View File

@ -1 +1,3 @@
#define PRERELEASE #define PRERELEASE
#define HAVE_PNG
#define HAVE_JPEG

View File

@ -8,6 +8,8 @@ cc = meson.get_compiler('c')
openmotif = cc.find_library('Xm', required: true) openmotif = cc.find_library('Xm', required: true)
xmu = dependency('xmu') xmu = dependency('xmu')
libpng = dependency('libpng')
libjpeg = dependency('libjpeg')
include_dir = include_directories('.') include_dir = include_directories('.')

View File

@ -51,7 +51,9 @@ exe = executable('Mosaic', sources, dependencies: [
Xmx, Xmx,
htmlw, htmlw,
nut, nut,
openmotif openmotif,
libpng,
libjpeg
], ],
install: true install: true
) )