fiv/meson.build

105 lines
3.5 KiB
Meson
Raw Normal View History

# vim: noet ts=4 sts=4 sw=4:
2021-11-20 14:28:13 +01:00
project('fastiv', 'c',
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'),
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-09-16 17:34:28 +02:00
# TODO(p): Use libraw_r later, when we start parallelizing/preloading.
lcms2 = dependency('lcms2', required : get_option('lcms2'))
2021-09-16 12:35:36 +02:00
libraw = dependency('libraw', required : get_option('libraw'))
librsvg = dependency('librsvg-2.0', required : get_option('librsvg'))
xcursor = dependency('xcursor', required : get_option('xcursor'))
libwebp = dependency('libwebp', required : get_option('libwebp'))
libwebpdemux = dependency('libwebpdemux', required : get_option('libwebp'))
libwebpdecoder = dependency('libwebpdecoder', required : get_option('libwebp'))
libwebpmux = dependency('libwebpmux', required : get_option('libwebp'))
libheif = dependency('libheif', required : get_option('libheif'))
libtiff = dependency('libtiff-4', required : get_option('libtiff'))
gdkpixbuf = dependency('gdk-pixbuf-2.0', required : get_option('gdk-pixbuf'))
2021-09-16 12:35:36 +02:00
dependencies = [
dependency('gtk+-3.0'),
dependency('pixman-1'),
2021-09-16 12:35:36 +02:00
dependency('libturbojpeg'),
dependency('libjpeg', required : get_option('jpeg-qs')),
dependency('spng', version : '>=0.7.0',
default_options: 'default_library=static'),
lcms2,
2021-09-16 12:35:36 +02:00
libraw,
librsvg,
xcursor,
libwebp,
libwebpdemux,
libwebpdecoder,
libwebpmux,
libheif,
libtiff,
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())
# TODO(p): Wrap it in a Meson subproject, try to enable SIMD.
conf.set('HAVE_JPEG_QS', get_option('jpeg-qs').enabled())
conf.set('HAVE_LCMS2', lcms2.found())
2021-09-16 12:35:36 +02:00
conf.set('HAVE_LIBRAW', libraw.found())
conf.set('HAVE_LIBRSVG', librsvg.found())
conf.set('HAVE_XCURSOR', xcursor.found())
conf.set('HAVE_LIBWEBP', libwebp.found())
conf.set('HAVE_LIBHEIF', libheif.found())
conf.set('HAVE_LIBTIFF', libtiff.found())
conf.set('HAVE_GDKPIXBUF', gdkpixbuf.found())
2021-07-14 07:09:19 +02:00
configure_file(
output : 'config.h',
configuration : conf,
)
gnome = import('gnome')
resources = gnome.compile_resources('resources',
'resources/resources.gresource.xml',
source_dir : 'resources',
c_name : 'resources',
)
exe = executable('fastiv', 'fastiv.c', 'fiv-view.c', 'fiv-io.c',
'fiv-browser.c', 'fiv-sidebar.c', 'xdg.c', resources,
2021-07-14 07:09:19 +02:00
install : true,
dependencies : [dependencies])
2021-09-16 17:34:28 +02:00
if gdkpixbuf.found()
executable('io-benchmark', 'fiv-io-benchmark.c', 'fiv-io.c', 'xdg.c',
2021-09-20 01:43:25 +02:00
build_by_default : false,
dependencies : [dependencies, gdkpixbuf])
2021-09-20 01:43:25 +02:00
endif
2021-09-16 17:34:28 +02:00
install_data('fastiv.desktop',
install_dir : get_option('datadir') + '/applications')
2021-11-22 20:36:41 +01:00
install_data('fastiv-browse.desktop',
install_dir : get_option('datadir') + '/applications')
2021-09-16 17:34:28 +02:00
install_data('fastiv.svg',
install_dir : get_option('datadir') + '/icons/hicolor/scalable/apps')
2021-11-18 13:36:31 +01:00
# TODO(p): Replace this with custom_target().
if not meson.is_cross_build()
meson.add_install_script(
'sh', '-c', '''sed -i "/^MimeType=/{c \\
MimeType=$($1 --list-supported-media-types | tr "\\012" ";")
}" "$MESON_INSTALL_DESTDIR_PREFIX/$2"''',
'sh',
exe.full_path(),
get_option('datadir') + '/applications/fastiv.desktop')
endif