c84543a4686f6eb93a1f63d51d363e276add188c
[geeqie.git] / meson.build
1 # This file is a part of Geeqie project (https://www.geeqie.org/).
2 # Copyright (C) 2008 - 2022 The Geeqie Team
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # Meson default directories used in this project:
15 # prefix - /usr/local
16 # bindir - bin
17 # datadir - share
18
19 # Meson core options:
20 # buildtype
21 # debug
22
23 # Project expanded default directories:
24 # prefix        /usr/local/
25 # bindir        /usr/local/bin                          geeqie executable
26 # gq_bindir     /usr/local/lib/geeqie               *   plugins scripts
27 # datadir       /usr/local/share/
28 #               /usr/local/share/applications           geeqie.desktop
29 # [gq_]appdir   /usr/local/share/geeqie/            *   template.desktop
30 # desktopdir    /usr/local/share/geeqie/applications    plugin desktop files
31 # appdatadir    /usr/local/share/metainfo               org.geeqie.Geeqie.appdata.xml
32 # icondir       /usr/local/share/pixmaps                geeqie.png icon
33 # [gq_]helpdir  /usr/local/share/doc/geeqie         *   readme files etc.
34 # [gq_]htmldir  /usr/local/share/doc/geeqie/html    *   help files
35 # gq_localedir  /usr/locale/share/locale
36 # mandir1       /usr/local/share/man/man1               man page
37 # podir         project_root/po
38
39 # * See meson_options.txt file
40
41 project(
42     'geeqie',
43     'c',
44     'cpp',
45     version : run_command('./version.sh', check : true).stdout().strip(),
46     license : ['GPL-2.0-or-later'],
47     meson_version : '>=0.53.0',
48     default_options : ['warning_level=3', 'buildtype=debugoptimized', 'cpp_link_args=-rdynamic']
49 )
50
51 # To inhibit warnings from the generated files icons_inline.h and ui_icons.h
52 add_global_arguments('-Wno-overlength-strings', language : 'c')
53
54 # To compile originally-C files as C++
55 add_global_arguments('-Wno-error=deprecated-declarations', language : 'cpp')
56 add_global_arguments('-Wno-error=sign-compare', language : 'cpp')
57 add_global_arguments('-Wno-error=return-type', language : 'cpp')
58 add_global_arguments('-Wno-error=literal-suffix', language : 'cpp')
59 add_global_arguments('-Wno-error=write-strings', language : 'cpp')
60
61 # Project requirements
62 project_sources = []
63 gnome = import('gnome')
64 thread_dep = dependency('threads')
65 cc = meson.get_compiler('c')
66 i18n = import('i18n')
67 fs = import('fs')
68 configuration_inc = include_directories('.')
69
70 # Extended stack trace using backward-app
71 option = get_option('devel')
72 if option.enabled()
73     if cc.has_link_argument('-ldwarf')
74         add_project_link_arguments('-ldwarf', language: 'cpp')
75     endif
76 endif
77
78 # External programs
79 gdk_pixbuf_csource = find_program('gdk-pixbuf-csource', required : true)
80 glib_compile_resources = find_program('glib-compile-resources', required : true)
81 glib_genmarshal = find_program('glib-genmarshal', required : true)
82
83 option = get_option('git')
84 if not option.disabled()
85     running_from_git = find_program('git', required: false).found() and fs.is_dir('.git')
86 else
87     running_from_git = false
88     summary({'git' : ['disabled - ChangeLog, ChangeLog.html, lua-api help file created:', false]}, section : 'Documentation', bool_yn : true)
89 endif
90
91 debug = get_option('debug')
92
93 # Note that main.cc sets prefix to the directory above where the executable is run from.
94 # This is to allow AppImages to be used
95
96 # These gq_* variables are paths relative to /prefix/,
97 # and are also used in defines in the source as GQ_*
98 if get_option('gq_appdir') == ''
99     gq_appdir = join_paths(get_option('datadir'), 'geeqie')
100 else
101     gq_appdir = get_option('gq_appdir')
102 endif
103
104 # This is not the same as Meson bindir
105 if get_option('gq_bindir') == ''
106     gq_bindir = 'lib/geeqie'
107 else
108     gq_bindir = get_option('gq_bindir')
109 endif
110
111 if get_option('gq_helpdir') == ''
112     gq_helpdir = join_paths(get_option('datadir'), 'doc/geeqie')
113 else
114     gq_helpdir = get_option('gq_helpdir')
115 endif
116
117 if get_option('gq_htmldir') == ''
118     gq_htmldir = join_paths(get_option('datadir'), 'doc/geeqie/html')
119 else
120     gq_htmldir = get_option('gq_htmldir')
121 endif
122
123 if get_option('gq_localedir') == ''
124     gq_localedir = join_paths(get_option('datadir'), 'locale')
125 else
126     gq_localedir = get_option('gq_localedir')
127 endif
128
129
130 # Set up the absolute directory paths used
131 prefix = get_option('prefix')
132 datadir = join_paths(prefix, get_option('datadir'))
133
134 # Installation paths are absolute
135 appdir = join_paths(prefix, gq_appdir)
136 appdatadir = join_paths(datadir, 'metainfo')
137 desktopdir = join_paths(datadir, meson.project_name(), 'applications')
138 helpdir = join_paths(prefix, gq_helpdir)
139 htmldir = join_paths(prefix, gq_htmldir)
140 icondir = join_paths(datadir, 'pixmaps')
141 mandir1 = join_paths(datadir, 'man', 'man1')
142
143 podir = join_paths(meson.source_root(), 'po')
144
145 summary({'gq_appdir': gq_appdir,
146         'gq_bindir': gq_helpdir,
147         'gq_helpdir': gq_helpdir,
148         'gq_htmldir': gq_htmldir,
149         'gq_localedir': gq_localedir,
150         }, section: 'Directories')
151
152 # Create the define constants used in the sources. Set via config.h.in
153 conf_data = configuration_data()
154 conf_data.set_quoted('VERSION', meson.project_version())
155 conf_data.set('DEBUG', debug)
156
157 option = get_option('gtk4')
158 if option.enabled()
159     gtk_dep = dependency('gtk4', required: true)
160     conf_data.set('HAVE_GTK4', 1)
161 else
162     gtk_dep = dependency('gtk+-3.0', version : '>=3.24', required: true)
163 endif
164 glib_dep = dependency('glib-2.0', version : '>=2.52', required: true)
165
166 # Required only when backward-cpp is used
167 libdw_dep = []
168 libunwind_dep = []
169 option = get_option('devel')
170 if option.enabled()
171     libdw_dep = dependency('libdw', required : true)
172     if libdw_dep.found()
173         libunwind_dep = dependency('libunwind', required : true)
174         if libunwind_dep.found()
175             conf_data.set('HAVE_DEVELOPER', 1)
176             summary({'developer mode' : ['extended stacktrace:', true]}, section : 'Debugging', bool_yn : true)
177         else
178             summary({'developer mode' : ['libunwind not found. extended stacktrace:', false]}, section : 'Debugging', bool_yn : true)
179         endif
180     else
181         summary({'developer mode' : ['libdw not found. extended stacktrace:', false]}, section : 'Debugging', bool_yn : true)
182     endif
183 else
184     summary({'developer mode' : ['extended stacktrace:', false]}, section : 'Debugging', bool_yn : true)
185 endif
186
187 # Required only for seg. fault stacktrace and backtrace debugging
188 option = get_option('execinfo')
189 if not option.disabled()
190     result = cc.check_header('execinfo.h')
191     if result
192         conf_data.set('HAVE_EXECINFO_H', 1)
193         summary({'execinfo' : ['stacktrace supported:', true]}, section : 'Debugging', bool_yn : true)
194     else
195         summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Debugging', bool_yn : true)
196     endif
197 else
198     summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Debugging', bool_yn : true)
199 endif
200
201 libarchive_dep = []
202 req_version = '>=3.4.0'
203 option = get_option('archive')
204 if not option.disabled()
205     libarchive_dep = dependency('libarchive', version : req_version, required : get_option('archive'))
206     if libarchive_dep.found()
207         conf_data.set('HAVE_ARCHIVE', 1)
208         summary({'archive' : ['archive files e.g. .zip supported:', true]}, section : 'Configuration', bool_yn : true)
209     else
210         summary({'archive' : ['libarchive ' + req_version + ' not found - archive files e.g. .zip supported::', false]}, section : 'Configuration', bool_yn : true)
211     endif
212 else
213     summary({'archive' : ['disabled - archive files e.g. .zip supported:', false]}, section : 'Configuration', bool_yn : true)
214 endif
215
216 lcms_dep = []
217 req_version = '>=2.0'
218 option = get_option('cms')
219 if not option.disabled()
220     xxd = find_program('xxd', 'xxdi.pl', required : false)
221     if xxd.found()
222         lcms_dep = dependency('lcms2', version : req_version, required : get_option('cms'))
223         if lcms_dep.found()
224             conf_data.set('HAVE_LCMS', 1)
225             conf_data.set('HAVE_LCMS2', 1)
226             summary({'cms' : ['color management supported:', true]}, section : 'Configuration', bool_yn : true)
227         else
228             summary({'cms' : ['lcms2' + req_version + ' not found - color management supported:', false]}, section : 'Configuration', bool_yn : true)
229         endif
230     else
231         summary({'cms' : ['xxd or xxdi.pl not found - color management supported:', false]}, section : 'Configuration', bool_yn : true)
232     endif
233 else
234     summary({'cms' : ['disabled - color management supported:', false]}, section : 'Configuration', bool_yn : true)
235 endif
236
237 ddjvuapi_dep = []
238 req_version = '>=2.5.27'
239 option = get_option('djvu')
240 if not option.disabled()
241     ddjvuapi_dep = dependency('ddjvuapi', version : req_version, required : get_option('djvu'))
242     if ddjvuapi_dep.found()
243         conf_data.set('HAVE_DJVU', 1)
244         summary({'djvu' : ['djvu files supported:', true]}, section : 'Configuration', bool_yn : true)
245     else
246         summary({'djvu' : ['ddjvuapi ' + req_version + ' not found - djvu files supported:', false]}, section : 'Configuration', bool_yn : true)
247     endif
248 else
249     summary({'djvu' : ['disabled - djvu files supported:', false]}, section : 'Configuration', bool_yn : true)
250 endif
251
252 option = get_option('evince')
253 if not option.disabled()
254     evince = find_program('evince', required : false)
255     if evince.found()
256         summary({'print preview' : ['print preview supported:', true]}, section : 'Configuration', bool_yn : true)
257     else
258         summary({'print preview' : ['evince not found - print preview supported:', false]}, section : 'Configuration', bool_yn : true)
259     endif
260 else
261     summary({'print preview' : ['disabled - print preview supported:', false]}, section : 'Configuration', bool_yn : true)
262 endif
263
264 # Required only for seg. fault stacktrace and backtrace debugging
265 option = get_option('execinfo')
266 if not option.disabled()
267     result = cc.check_header('execinfo.h')
268     if result
269         conf_data.set('HAVE_EXECINFO_H', 1)
270         summary({'execinfo' : ['stacktrace supported:', true]}, section : 'Configuration', bool_yn : true)
271     else
272         summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Configuration', bool_yn : true)
273     endif
274 else
275     summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Configuration', bool_yn : true)
276 endif
277
278 exiv2_dep = []
279 req_version = '>=0.11'
280 option = get_option('exiv2')
281 if not option.disabled()
282     exiv2_dep = dependency('exiv2', version : req_version, required : get_option('exiv2'))
283     if exiv2_dep.found()
284         conf_data.set('HAVE_EXIV2', 1)
285         summary({'exiv2' : ['image metadata processed by exiv2:', true]}, section : 'Configuration', bool_yn : true)
286     else
287         summary({'exiv2' : ['exiv2 ' + req_version + ' not found - image data not processed by exiv2:', false]}, section : 'Configuration', bool_yn : true)
288     endif
289 else
290     summary({'exiv2' : ['disabled - image data processed by exiv2:', false]}, section : 'Configuration', bool_yn : true)
291 endif
292
293 champlain_dep = []
294 champlain_gtk_dep = []
295 clutter_dep = []
296 clutter_gtk_dep = []
297 req_version_champlain = '>=0.12'
298 req_version_champlain_gtk = '>=0.12'
299 req_version_clutter = '>=1.0'
300 req_version_clutter_gtk = '>=1.0'
301 option = get_option('gps-map')
302 if not option.disabled()
303     champlain_dep = dependency('champlain-0.12', version : req_version_champlain, required : get_option('gps-map'))
304     champlain_gtk_dep = dependency('champlain-gtk-0.12', version : req_version_champlain_gtk, required : get_option('gps-map'))
305     if champlain_dep.found() and champlain_gtk_dep.found()
306         clutter_dep = dependency('clutter-1.0', version : req_version_clutter, required : get_option('gps-map'))
307         clutter_gtk_dep = dependency('clutter-gtk-1.0', version : req_version_clutter_gtk, required : get_option('gps-map'))
308         if clutter_dep.found() and clutter_gtk_dep.found()
309             conf_data.set('HAVE_CLUTTER', 1)
310             conf_data.set('HAVE_LIBCHAMPLAIN', 1)
311             conf_data.set('HAVE_LIBCHAMPLAIN_GTK', 1)
312             summary({'gps-map' : ['GPS map displayed', true]}, section : 'Configuration', bool_yn : true)
313         else
314             if not clutter_dep.found()
315                 summary({'gps-map-clutter' : ['clutter-1.0 ' + req_version_clutter + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
316             endif
317             if not clutter_gtk_dep.found()
318                 summary({'gps-map-clutter-gtk' : ['clutter-gtk-1.0 ' + req_version_clutter_gtk + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
319             endif
320         endif
321     else
322         if not champlain_dep.found()
323             summary({'gps-map-champlain' : ['champlain-0.12 ' + req_version_champlain + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
324         endif
325         if not champlain_gtk_dep.found()
326             summary({'gps-map-champlain-gtk' : ['champlain-gtk-0.12 ' + req_version_champlain_gtk + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
327         endif
328     endif
329 else
330     summary({'gps-map' : ['disabled - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
331 endif
332
333 libheif_dep = []
334 req_version = '>=1.3.2'
335 option = get_option('heif')
336 if not option.disabled()
337     libheif_dep = dependency('libheif', version : req_version, required : get_option('heif'))
338     if libheif_dep.found()
339         conf_data.set('HAVE_HEIF', 1)
340         summary({'heif' : ['heif files supported:', true]}, section : 'Configuration', bool_yn : true)
341     else
342         summary({'heif' : ['libheif ' + req_version + ' not found - heif files supported:', false]}, section : 'Configuration', bool_yn : true)
343     endif
344 else
345     summary({'heif' : ['disabled - heif files supported:', false]}, section : 'Configuration', bool_yn : true)
346 endif
347
348 libopenjp2_dep = []
349 req_version = '>=2.3.0'
350 option = get_option('j2k')
351 if not option.disabled()
352     libopenjp2_dep = dependency('libopenjp2', version : req_version, required : get_option('j2k'))
353     if libopenjp2_dep.found()
354         conf_data.set('HAVE_J2K', 1)
355         summary({'j2k' : ['j2k files supported:', true]}, section : 'Configuration', bool_yn : true)
356     else
357         summary({'j2k' : ['libopenjp2 ' + req_version + ' not found - j2k files supported:', false]}, section : 'Configuration', bool_yn : true)
358     endif
359 else
360     summary({'j2k' : ['disabled - j2k files supported:', false]}, section : 'Configuration', bool_yn : true)
361 endif
362
363 libjpeg_dep = []
364 option = get_option('jpeg')
365 if not option.disabled()
366 libjpeg_dep = dependency('libjpeg', required : get_option('jpeg'))
367     if libjpeg_dep.found()
368         if cc.has_function('jpeg_destroy_decompress', dependencies : libjpeg_dep)
369             conf_data.set('HAVE_JPEG', 1)
370             summary({'jpeg' : ['jpeg files supported:', true]}, section : 'Configuration', bool_yn : true)
371         else
372             summary({'jpeg' : ['jpeg_destroy_decompress not found - jpeg files supported:', false]}, section : 'Configuration', bool_yn : true)
373         endif
374     else
375         summary({'jpeg' : ['libjpeg: not found', false]}, section : 'Configuration', bool_yn : true)
376     endif
377 else
378     summary({'jpeg' : ['disabled - jpeg files supported:', false]}, section : 'Configuration', bool_yn : true)
379 endif
380
381 libjxl_dep = []
382 req_version = '>=0.3.7'
383 option = get_option('jpegxl')
384 if not option.disabled()
385     libjxl_dep = dependency('libjxl', version : req_version, required : get_option('jpegxl'))
386     if libjxl_dep.found()
387         conf_data.set('HAVE_JPEGXL', 1)
388         summary({'jpegxl' : ['jpegxl files supported:', true]}, section : 'Configuration', bool_yn : true)
389     else
390         summary({'jpegxl' : ['libjxl ' + req_version + ' not found - jpegxl files supported:', false]}, section : 'Configuration', bool_yn : true)
391     endif
392 else
393     summary({'jpegxl' : ['disabled - jpegxl files supported:', false]}, section : 'Configuration', bool_yn : true)
394 endif
395
396 libraw_dep = []
397 req_version = '>=0.20'
398 option = get_option('libraw')
399 if not option.disabled()
400     libraw_dep = dependency('libraw', version : req_version, required : get_option('libraw'))
401     if libraw_dep.found()
402         conf_data.set('HAVE_RAW', 1)
403         summary({'libraw' : ['.cr3 files supported:', true]}, section : 'Configuration', bool_yn : true)
404     else
405         summary({'libraw' : ['libraw ' + req_version + ' not found - .cr3 files supported:', false]}, section : 'Configuration', bool_yn : true)
406     endif
407 else
408     summary({'libraw' : ['disabled - .cr3 files supported:', false]}, section : 'Configuration', bool_yn : true)
409 endif
410
411 lua_dep = []
412 req_version = '>=5.3'
413 option = get_option('lua')
414 if not option.disabled()
415     foreach name : ['lua', 'lua5.3', 'lua-5.3', 'lua53']
416         lua_dep = dependency(name, version: req_version, required: get_option('lua'))
417         if lua_dep.found()
418             break
419         endif
420     endforeach
421     if lua_dep.found()
422         conf_data.set('HAVE_LUA', 1)
423         summary({'lua' : ['lua supported:', true]}, section : 'Configuration', bool_yn : true)
424     else
425         summary({'lua' : ['lua ' + req_version + ' not found - lua supported:', false]}, section : 'Configuration', bool_yn : true)
426     endif
427 else
428     summary({'lua' : ['disabled - lua supported:', false]}, section : 'Configuration', bool_yn : true)
429 endif
430
431 option = get_option('pandoc')
432 if not option.disabled()
433     pandoc = find_program('pandoc', required : false)
434     if pandoc.found()
435         readme_html = custom_target(
436             'README.html',
437             input: 'README.md',
438             output: 'README.html',
439             command: [pandoc, '@INPUT@', '-o', '@OUTPUT@'],
440             install: true,
441             install_dir: helpdir)
442
443         summary({'README' : ['README.html created:', true]}, section : 'Documentation', bool_yn : true)
444     else
445         summary({'README' : ['pandoc not found - README.html created:', false]}, section : 'Documentation', bool_yn : true)
446     endif
447     install_data('README.md', 'COPYING', 'TODO', install_dir : helpdir)
448 else
449     summary({'pandoc' : ['disabled - README.html created:', false]}, section : 'Documentation', bool_yn : true)
450 endif
451
452 poppler_glib_dep = []
453 req_version = '>=0.62'
454 option = get_option('pdf')
455 if not option.disabled()
456     poppler_glib_dep = dependency('poppler-glib', version : req_version, required : get_option('pdf'))
457     if poppler_glib_dep.found()
458         conf_data.set('HAVE_PDF', 1)
459         summary({'pdf'  : ['pdf files supported:', true]}, section : 'Configuration', bool_yn : true)
460     else
461         summary({'pdf' : ['poppler-glib ' + req_version + ' not found - pdf files supported:', false]}, section : 'Configuration', bool_yn : true)
462     endif
463 else
464     summary({'pdf' : ['disabled - pdf files supported:', false]}, section : 'Configuration', bool_yn : true)
465 endif
466
467 gspell_dep = []
468 req_version = '>=1.6'
469 option = get_option('spell')
470 if not option.disabled()
471     gspell_dep = dependency('gspell-1', version : req_version, required: get_option('spell'))
472     if gspell_dep.found()
473         conf_data.set('HAVE_SPELL', 1)
474         summary({'spell' : ['spelling checks enabled', true]}, section : 'Configuration', bool_yn : true)
475     else
476         summary({'spell' : ['gspell-1 ' + req_version + ' not found - spelling checks enabled', false]}, section : 'Configuration', bool_yn : true)
477     endif
478 else
479     summary({'spell' : ['disabled - spelling checks enabled', false]}, section : 'Configuration', bool_yn : true)
480 endif
481
482 tiff_dep = []
483 option = get_option('tiff')
484 if not option.disabled()
485     tiff_dep = dependency('libtiff-4', required: get_option('tiff'))
486     if tiff_dep.found()
487         if cc.has_function('TIFFClientOpen', dependencies : tiff_dep)
488             conf_data.set('HAVE_TIFF', 1)
489             summary({'tiff' : ['tiff files supported:', true]}, section : 'Configuration', bool_yn : true)
490         else
491             summary({'tiff' : ['TIFFClientOpen not found - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
492         endif
493     else
494         summary({'tiff' : ['libtiff not found - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
495     endif
496 else
497     summary({'tiff' : ['disabled - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
498 endif
499
500 libffmpegthumbnailer_dep = []
501 req_version = '>=2.1.0'
502 option = get_option('videothumbnailer')
503 if not option.disabled()
504     libffmpegthumbnailer_dep = dependency('libffmpegthumbnailer',
505         version : req_version,
506         required : get_option('videothumbnailer'))
507
508     if libffmpegthumbnailer_dep.found()
509         conf_data.set('HAVE_FFMPEGTHUMBNAILER', 1)
510         summary({'videothumbnailer' : ['thumbnails of video files supported:', true]}, section : 'Configuration', bool_yn : true)
511
512         result = cc.has_member('struct video_thumbnailer_struct', 'prefer_embedded_metadata', prefix : '#include <libffmpegthumbnailer/videothumbnailerc.h>')
513         if result
514             conf_data.set('HAVE_FFMPEGTHUMBNAILER_METADATA', 1)
515         endif
516         summary({'fmpegthumbnailer_metadata' : ['fmpegthumbnailer_metadata found:', result]}, section : 'Thumbnailer', bool_yn : true)
517
518         result = cc.has_member('struct image_data_struct', 'image_data_width', prefix : '#include <libffmpegthumbnailer/videothumbnailerc.h>' )
519         if result
520             conf_data.set('HAVE_FFMPEGTHUMBNAILER_RGB', 1)
521         endif
522         summary({'fmpegthumbnailer_rgb' : ['fmpegthumbnailer_rgb found:', result]}, section : 'Thumbnailer', bool_yn : true)
523
524         result = cc.has_function('video_thumbnailer_set_size', dependencies : libffmpegthumbnailer_dep)
525         if result
526             conf_data.set('HAVE_FFMPEGTHUMBNAILER_WH', 1)
527         endif
528         summary({'fmpegthumbnailer_set_size' : ['fmpegthumbnailer_set_size found:', result]}, section : 'Thumbnailer', bool_yn : true)
529     else
530         summary({'videothumbnailer' : ['libvideothumbnailer ' + req_version + ' not found - thumbnails of video files supported', false]}, section : 'Configuration', bool_yn : true)
531     endif
532 else
533     summary({'videothumbnailer' : ['disabled -thumbnails of video files supported', false]}, section : 'Configuration', bool_yn : true)
534 endif
535
536 # libpixbufloader-webp is not loaded as part of libgdk-pixbuf. Just issue
537 # a warning if not installed
538 libwebp_dir = dependency('gdk-pixbuf-2.0', method: 'pkg-config').get_variable('gdk_pixbuf_moduledir')
539 libwebp_dep = cc.find_library('libpixbufloader-webp', dirs : libwebp_dir, required : false)
540
541 if libwebp_dep.found()
542         summary({'webp' : ['webp files supported:', true]}, section : 'Configuration', bool_yn : true)
543 else
544         summary({'webp' : ['webp-pixbuf-loader not installed - webp files supported:', false]}, section : 'Configuration', bool_yn : true)
545 endif
546
547 # Check for nl_langinfo and _NL_TIME_FIRST_WEEKDAY
548 code = '''#include <langinfo.h>
549 #include<stdio.h>
550 int main (int argc, char ** argv) {
551     char *c;
552     c =  nl_langinfo(_NL_TIME_FIRST_WEEKDAY);
553     return 0;
554 }'''
555 if cc.links(code, name : 'nl_langinfo and _NL_TIME_FIRST_WEEKDAY')
556     conf_data.set('HAVE__NL_TIME_FIRST_WEEKDAY', 1)
557     summary({'nl_langinfo' : ['first weekday depends on locale:', true]}, section : 'Documentation', bool_yn : true)
558 else
559     summary({'nl_langinfo' : ['nl_langinfo not found - first weekday depends on locale:', false, 'first weekday defaults to Monday']}, section : 'Documentation', bool_yn : true)
560 endif
561
562 conf_data.set_quoted('GETTEXT_PACKAGE', meson.project_name())
563 conf_data.set_quoted('GQ_APPDIR', gq_appdir)
564 conf_data.set_quoted('GQ_BINDIR', gq_bindir)
565 conf_data.set_quoted('GQ_HELPDIR', gq_helpdir)
566 conf_data.set_quoted('GQ_HTMLDIR', gq_htmldir)
567 conf_data.set_quoted('GQ_LOCALEDIR', gq_localedir)
568
569 conf_data.set_quoted('PACKAGE', meson.project_name())
570 conf_data.set_quoted('PACKAGE_NAME', meson.project_name())
571 conf_data.set_quoted('PACKAGE_STRING', meson.project_version())
572 conf_data.set_quoted('PACKAGE_TARNAME', meson.project_name())
573 conf_data.set_quoted('PACKAGE_VERSION', meson.project_version())
574 conf_data.set_quoted('VERSION', meson.project_version())
575
576 configure_file(input : 'config.h.in',
577                output : 'config.h',
578                encoding : 'UTF-8',
579                configuration : conf_data)
580
581 # Process subdirs before the sources
582 subdir('po')
583 subdir('plugins')
584
585 # Generate the executable
586 subdir('src')
587
588 # Generate the help files
589 subdir('doc')
590
591 # Install other project files
592 if running_from_git
593     cmd = [find_program('gen_changelog.sh'), meson.current_source_dir(), meson.current_build_dir()]
594     custom_target(
595         'ChangeLog',
596         input: 'ChangeLog.gqview',
597         output: ['ChangeLog', 'ChangeLog.html'],
598         command: cmd,
599         install: true,
600         install_dir: helpdir)
601     meson.add_dist_script(cmd)
602     summary({'ChangeLog' : ['ChangeLog, ChangeLog.html created:', true]}, section : 'Documentation', bool_yn : true)
603 elif fs.exists('ChangeLog.html')
604     install_data('ChangeLog', 'ChangeLog.html', install_dir: helpdir)
605     summary({'ChangeLog' : ['ChangeLog, ChangeLog.html installed from dist:', true]}, section : 'Documentation', bool_yn : true)
606 endif
607
608 install_data('geeqie.png', install_dir : icondir)
609 install_data('geeqie.1', install_dir : mandir1)
610
611 i18n.merge_file(
612     input : 'geeqie.desktop.in',
613     output : 'geeqie.desktop',
614     type : 'desktop',
615     po_dir : podir,
616     install : true,
617     install_dir : join_paths(datadir, 'applications'))
618
619 i18n.merge_file(
620     input : 'org.geeqie.Geeqie.appdata.xml.in',
621     output : 'org.geeqie.Geeqie.appdata.xml',
622     type : 'xml',
623     po_dir : podir,
624     install : true,
625     install_dir : appdatadir)
626
627 configure_file(input: 'geeqie.spec.in', output: 'geeqie.spec', configuration: conf_data)