2021-12-18 06:38:30 +01:00
|
|
|
# vim: noet ts=4 sts=4 sw=4:
|
2022-01-05 04:42:01 +01:00
|
|
|
project('fiv', 'c',
|
2021-11-20 14:28:13 +01:00
|
|
|
default_options : ['c_std=gnu99', 'warning_level=2'],
|
|
|
|
version : '0.1.0')
|
|
|
|
add_project_arguments(
|
|
|
|
meson.get_compiler('c').get_supported_arguments('-Wno-cast-function-type'),
|
2021-11-20 14:33:14 +01:00
|
|
|
language : 'c',
|
2021-11-20 14:28:13 +01:00
|
|
|
)
|
2021-07-14 07:09:19 +02:00
|
|
|
|
2021-11-30 22:52:34 +01:00
|
|
|
if get_option('buildtype').startswith('debug')
|
|
|
|
flags = meson.get_compiler('c').get_supported_arguments(
|
|
|
|
'-fsanitize=address,undefined')
|
|
|
|
add_project_arguments(flags, language : ['c'])
|
|
|
|
add_project_link_arguments(flags, language : ['c'])
|
|
|
|
endif
|
|
|
|
|
2021-12-22 22:07:49 +01:00
|
|
|
lcms2 = dependency('lcms2', required : get_option('lcms2'))
|
2021-12-26 19:41:42 +01:00
|
|
|
# Note that only libraw_r is thread-safe, but we'll just run it out-of process.
|
2021-09-16 12:35:36 +02:00
|
|
|
libraw = dependency('libraw', required : get_option('libraw'))
|
2021-11-09 19:42:43 +01:00
|
|
|
librsvg = dependency('librsvg-2.0', required : get_option('librsvg'))
|
2021-11-17 13:45:42 +01:00
|
|
|
xcursor = dependency('xcursor', required : get_option('xcursor'))
|
2021-12-11 14:40:10 +01:00
|
|
|
libheif = dependency('libheif', required : get_option('libheif'))
|
2021-11-26 21:31:13 +01:00
|
|
|
libtiff = dependency('libtiff-4', required : get_option('libtiff'))
|
2021-11-10 21:33:30 +01:00
|
|
|
gdkpixbuf = dependency('gdk-pixbuf-2.0', required : get_option('gdk-pixbuf'))
|
2021-09-16 12:35:36 +02:00
|
|
|
dependencies = [
|
|
|
|
dependency('gtk+-3.0'),
|
2021-12-22 22:07:49 +01:00
|
|
|
dependency('pixman-1'),
|
|
|
|
|
2021-09-16 12:35:36 +02:00
|
|
|
dependency('libturbojpeg'),
|
2021-12-22 10:59:03 +01:00
|
|
|
dependency('libjpeg', required : get_option('jpeg-qs')),
|
2021-12-26 19:41:42 +01:00
|
|
|
dependency('libwebp'),
|
|
|
|
dependency('libwebpdemux'),
|
2022-01-06 08:15:26 +01:00
|
|
|
dependency('libwebpdecoder', required : false),
|
2021-12-26 19:41:42 +01:00
|
|
|
dependency('libwebpmux'),
|
|
|
|
# https://github.com/google/wuffs/issues/58
|
2021-11-12 13:00:35 +01:00
|
|
|
dependency('spng', version : '>=0.7.0',
|
2022-01-06 08:15:26 +01:00
|
|
|
default_options: 'default_library=static',
|
|
|
|
# fallback : ['spng', 'spng_dep'],
|
|
|
|
),
|
2021-12-22 22:07:49 +01:00
|
|
|
|
|
|
|
lcms2,
|
2021-09-16 12:35:36 +02:00
|
|
|
libraw,
|
2021-11-09 19:42:43 +01:00
|
|
|
librsvg,
|
2021-11-17 13:45:42 +01:00
|
|
|
xcursor,
|
2021-12-11 14:40:10 +01:00
|
|
|
libheif,
|
2021-11-26 21:31:13 +01:00
|
|
|
libtiff,
|
2021-11-12 13:41:54 +01:00
|
|
|
gdkpixbuf,
|
2021-09-17 20:40:11 +02:00
|
|
|
meson.get_compiler('c').find_library('m', required : false),
|
2021-09-16 12:35:36 +02:00
|
|
|
]
|
|
|
|
|
2021-07-14 07:09:19 +02:00
|
|
|
conf = configuration_data()
|
|
|
|
conf.set_quoted('PROJECT_NAME', meson.project_name())
|
|
|
|
conf.set_quoted('PROJECT_VERSION', meson.project_version())
|
2021-12-22 10:59:03 +01:00
|
|
|
# TODO(p): Wrap it in a Meson subproject, try to enable SIMD.
|
|
|
|
conf.set('HAVE_JPEG_QS', get_option('jpeg-qs').enabled())
|
2021-12-22 22:07:49 +01:00
|
|
|
conf.set('HAVE_LCMS2', lcms2.found())
|
2021-09-16 12:35:36 +02:00
|
|
|
conf.set('HAVE_LIBRAW', libraw.found())
|
2021-11-09 19:42:43 +01:00
|
|
|
conf.set('HAVE_LIBRSVG', librsvg.found())
|
2021-11-17 13:45:42 +01:00
|
|
|
conf.set('HAVE_XCURSOR', xcursor.found())
|
2021-12-11 14:40:10 +01:00
|
|
|
conf.set('HAVE_LIBHEIF', libheif.found())
|
2021-11-26 21:31:13 +01:00
|
|
|
conf.set('HAVE_LIBTIFF', libtiff.found())
|
2021-11-10 21:33:30 +01:00
|
|
|
conf.set('HAVE_GDKPIXBUF', gdkpixbuf.found())
|
2021-07-14 07:09:19 +02:00
|
|
|
configure_file(
|
|
|
|
output : 'config.h',
|
|
|
|
configuration : conf,
|
|
|
|
)
|
|
|
|
|
2021-11-20 20:55:24 +01:00
|
|
|
gnome = import('gnome')
|
|
|
|
resources = gnome.compile_resources('resources',
|
|
|
|
'resources/resources.gresource.xml',
|
|
|
|
source_dir : 'resources',
|
|
|
|
c_name : 'resources',
|
|
|
|
)
|
|
|
|
|
2022-01-05 04:42:01 +01:00
|
|
|
exe = executable('fiv', 'fiv.c', 'fiv-view.c', 'fiv-io.c',
|
2021-12-28 19:58:14 +01:00
|
|
|
'fiv-browser.c', 'fiv-sidebar.c', 'fiv-thumbnail.c', 'xdg.c', resources,
|
2021-07-14 07:09:19 +02:00
|
|
|
install : true,
|
|
|
|
dependencies : [dependencies])
|
2021-09-16 17:34:28 +02:00
|
|
|
|
2021-11-13 09:20:37 +01:00
|
|
|
if gdkpixbuf.found()
|
2021-12-18 06:38:30 +01:00
|
|
|
executable('io-benchmark', 'fiv-io-benchmark.c', 'fiv-io.c', 'xdg.c',
|
2021-09-20 01:43:25 +02:00
|
|
|
build_by_default : false,
|
2021-11-13 09:20:37 +01:00
|
|
|
dependencies : [dependencies, gdkpixbuf])
|
2021-09-20 01:43:25 +02:00
|
|
|
endif
|
|
|
|
|
2022-01-06 11:28:56 +01:00
|
|
|
# XXX: With gdk-pixbuf, this even dependens on currently installed modules.
|
|
|
|
if meson.is_cross_build()
|
|
|
|
install_data('fiv.desktop',
|
|
|
|
install_dir : get_option('datadir') + '/applications')
|
|
|
|
else
|
|
|
|
# XXX: The exe path may not contain spaces--quoting is a bitch in Meson.
|
|
|
|
desktop = custom_target('desktop',
|
|
|
|
output : 'fiv.desktop',
|
|
|
|
input : 'fiv.desktop',
|
|
|
|
command : ['sh', '-c', '''awk '/^MimeType=/ { $0 = "MimeType=";
|
|
|
|
while ((exe " --list-supported-media-types" | getline type) > 0)
|
|
|
|
$0 = $0 type ";" } 1' "exe=$1" "$2"''', 'sh', exe, '@INPUT@'],
|
|
|
|
capture : true,
|
|
|
|
install : true,
|
|
|
|
install_dir : get_option('datadir') + '/applications',
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2022-01-05 04:42:01 +01:00
|
|
|
install_data('fiv-browse.desktop',
|
2021-11-22 20:36:41 +01:00
|
|
|
install_dir : get_option('datadir') + '/applications')
|
2022-01-05 04:42:01 +01:00
|
|
|
install_data('fiv.svg',
|
2021-09-16 17:34:28 +02:00
|
|
|
install_dir : get_option('datadir') + '/icons/hicolor/scalable/apps')
|