Revise testing
[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           org.geeqie.Geeqie.desktop
29 # [gq_]appdir   /usr/local/share/geeqie/            *   org,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 : '>=1.0.0',
48     default_options : ['cpp_std=c++14', 'warning_level=3', 'buildtype=debugoptimized', 'cpp_link_args=-rdynamic']
49 )
50
51 # To inhibit warnings from the generated file 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
57 # Project requirements
58 project_sources = []
59 gnome = import('gnome')
60 thread_dep = dependency('threads')
61 cc = meson.get_compiler('cpp')
62 i18n = import('i18n')
63 fs = import('fs')
64 configuration_inc = include_directories('.')
65
66 # Extended stack trace using backward-app
67 option = get_option('devel')
68 if option.enabled()
69     if cc.has_link_argument('-ldwarf')
70         add_project_link_arguments('-ldwarf', language: 'cpp')
71     endif
72 endif
73
74 # External programs
75 glib_compile_resources = find_program('glib-compile-resources', required : true)
76 glib_genmarshal = find_program('glib-genmarshal', required : true)
77
78 option = get_option('git')
79 if not option.disabled()
80     running_from_git = find_program('git', required: false).found() and fs.is_dir('.git')
81 else
82     running_from_git = false
83     summary({'git' : ['disabled - ChangeLog, ChangeLog.html, lua-api help file created:', false]}, section : 'Documentation', bool_yn : true)
84 endif
85
86 debug = get_option('debug')
87
88 # Note that main.cc sets prefix to the directory above where the executable is run from.
89 # This is to allow AppImages to be used
90
91 # These gq_* variables are paths relative to /prefix/,
92 # and are also used in defines in the source as GQ_*
93 if get_option('gq_appdir') == ''
94     gq_appdir = join_paths(get_option('datadir'), 'geeqie')
95 else
96     gq_appdir = get_option('gq_appdir')
97 endif
98
99 # This is not the same as Meson bindir
100 if get_option('gq_bindir') == ''
101     gq_bindir = 'lib/geeqie'
102 else
103     gq_bindir = get_option('gq_bindir')
104 endif
105
106 if get_option('gq_helpdir') == ''
107     gq_helpdir = join_paths(get_option('datadir'), 'doc/geeqie')
108 else
109     gq_helpdir = get_option('gq_helpdir')
110 endif
111
112 if get_option('gq_htmldir') == ''
113     gq_htmldir = join_paths(get_option('datadir'), 'doc/geeqie/html')
114 else
115     gq_htmldir = get_option('gq_htmldir')
116 endif
117
118 if get_option('gq_localedir') == ''
119     gq_localedir = join_paths(get_option('datadir'), 'locale')
120 else
121     gq_localedir = get_option('gq_localedir')
122 endif
123
124
125 # Set up the absolute directory paths used
126 prefix = get_option('prefix')
127 datadir = join_paths(prefix, get_option('datadir'))
128
129 # Installation paths are absolute
130 appdir = join_paths(prefix, gq_appdir)
131 appdatadir = join_paths(datadir, 'metainfo')
132 desktopdir = join_paths(datadir, meson.project_name(), 'applications')
133 helpdir = join_paths(prefix, gq_helpdir)
134 htmldir = join_paths(prefix, gq_htmldir)
135 icondir = join_paths(datadir, 'pixmaps')
136 mandir1 = join_paths(datadir, 'man', 'man1')
137
138 podir = join_paths(meson.project_source_root(), 'po')
139 scriptsdir = join_paths(meson.project_source_root(), 'scripts')
140
141 summary({'gq_appdir': gq_appdir,
142         'gq_bindir': gq_helpdir,
143         'gq_helpdir': gq_helpdir,
144         'gq_htmldir': gq_htmldir,
145         'gq_localedir': gq_localedir,
146         }, section: 'Directories')
147
148 # Create the define constants used in the sources. Set via config.h.in
149 conf_data = configuration_data()
150 conf_data.set_quoted('VERSION', meson.project_version())
151 conf_data.set('DEBUG', debug)
152
153 option = get_option('gtk4')
154 if option.enabled()
155     gtk_dep = dependency('gtk4', required: true)
156     conf_data.set('HAVE_GTK4', 1)
157 else
158     gtk_dep = dependency('gtk+-3.0', version : '>=3.24', required: true)
159 endif
160 glib_dep = dependency('glib-2.0', version : '>=2.52', required: true)
161
162 # Required only when backward-cpp is used
163 libdw_dep = []
164 libunwind_dep = []
165 option = get_option('devel')
166 if option.enabled()
167     libdw_dep = dependency('libdw', required : true)
168     if libdw_dep.found()
169         libunwind_dep = dependency('libunwind', required : true)
170         if libunwind_dep.found()
171             conf_data.set('HAVE_DEVELOPER', 1)
172             summary({'developer mode' : ['extended stacktrace:', true]}, section : 'Debugging', bool_yn : true)
173         else
174             summary({'developer mode' : ['libunwind not found. extended stacktrace:', false]}, section : 'Debugging', bool_yn : true)
175         endif
176     else
177         summary({'developer mode' : ['libdw not found. extended stacktrace:', false]}, section : 'Debugging', bool_yn : true)
178     endif
179 else
180     summary({'developer mode' : ['extended stacktrace:', false]}, section : 'Debugging', bool_yn : true)
181 endif
182
183 # Required only for seg. fault stacktrace and backtrace debugging
184 option = get_option('execinfo')
185 libexecinfo_dep = []
186 if not option.disabled()
187     result = cc.check_header('execinfo.h')
188     if result
189         # Include unconditionally dependency for NetBSD.
190         libexecinfo_dep = cc.find_library('execinfo', required : false)
191         conf_data.set('HAVE_EXECINFO_H', 1)
192         summary({'execinfo' : ['stacktrace supported:', true]}, section : 'Debugging', bool_yn : true)
193     else
194         summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Debugging', bool_yn : true)
195     endif
196 else
197     summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Debugging', bool_yn : true)
198 endif
199
200 libarchive_dep = []
201 req_version = '>=3.4.0'
202 option = get_option('archive')
203 if not option.disabled()
204     libarchive_dep = dependency('libarchive', version : req_version, required : get_option('archive'))
205     if libarchive_dep.found()
206         conf_data.set('HAVE_ARCHIVE', 1)
207         summary({'archive' : ['archive files e.g. .zip supported:', true]}, section : 'Configuration', bool_yn : true)
208     else
209         summary({'archive' : ['libarchive ' + req_version + ' not found - archive files e.g. .zip supported::', false]}, section : 'Configuration', bool_yn : true)
210     endif
211 else
212     summary({'archive' : ['disabled - archive files e.g. .zip supported:', false]}, section : 'Configuration', bool_yn : true)
213 endif
214
215 lcms_dep = []
216 req_version = '>=2.0'
217 option = get_option('cms')
218 if not option.disabled()
219     xxd = find_program('xxd', 'xxdi.pl', required : false)
220     if xxd.found()
221         lcms_dep = dependency('lcms2', version : req_version, required : get_option('cms'))
222         if lcms_dep.found()
223             conf_data.set('HAVE_LCMS', 1)
224             conf_data.set('HAVE_LCMS2', 1)
225             summary({'cms' : ['color management supported:', true]}, section : 'Configuration', bool_yn : true)
226         else
227             summary({'cms' : ['lcms2' + req_version + ' not found - color management supported:', false]}, section : 'Configuration', bool_yn : true)
228         endif
229     else
230         summary({'cms' : ['xxd or xxdi.pl not found - color management supported:', false]}, section : 'Configuration', bool_yn : true)
231     endif
232 else
233     summary({'cms' : ['disabled - color management supported:', false]}, section : 'Configuration', bool_yn : true)
234 endif
235
236 ddjvuapi_dep = []
237 req_version = '>=2.5.27'
238 option = get_option('djvu')
239 if not option.disabled()
240     ddjvuapi_dep = dependency('ddjvuapi', version : req_version, required : get_option('djvu'))
241     if ddjvuapi_dep.found()
242         conf_data.set('HAVE_DJVU', 1)
243         summary({'djvu' : ['djvu files supported:', true]}, section : 'Configuration', bool_yn : true)
244     else
245         summary({'djvu' : ['ddjvuapi ' + req_version + ' not found - djvu files supported:', false]}, section : 'Configuration', bool_yn : true)
246     endif
247 else
248     summary({'djvu' : ['disabled - djvu files supported:', false]}, section : 'Configuration', bool_yn : true)
249 endif
250
251 option = get_option('evince')
252 if not option.disabled()
253     evince = find_program('evince', required : false)
254     if evince.found()
255         summary({'print preview' : ['print preview supported:', true]}, section : 'Configuration', bool_yn : true)
256     else
257         summary({'print preview' : ['evince not found - print preview supported:', false]}, section : 'Configuration', bool_yn : true)
258     endif
259 else
260     summary({'print preview' : ['disabled - print preview supported:', false]}, section : 'Configuration', bool_yn : true)
261 endif
262
263 # Required only for seg. fault stacktrace and backtrace debugging
264 option = get_option('execinfo')
265 if not option.disabled()
266     result = cc.check_header('execinfo.h')
267     if result
268         conf_data.set('HAVE_EXECINFO_H', 1)
269         summary({'execinfo' : ['stacktrace supported:', true]}, section : 'Configuration', bool_yn : true)
270     else
271         summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Configuration', bool_yn : true)
272     endif
273 else
274     summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Configuration', bool_yn : true)
275 endif
276
277 exiv2_dep = []
278 req_version = '>=0.11'
279 option = get_option('exiv2')
280 if not option.disabled()
281     exiv2_dep = dependency('exiv2', version : req_version, required : get_option('exiv2'))
282     if exiv2_dep.found()
283         conf_data.set('HAVE_EXIV2', 1)
284         summary({'exiv2' : ['image metadata processed by exiv2:', true]}, section : 'Configuration', bool_yn : true)
285     else
286         summary({'exiv2' : ['exiv2 ' + req_version + ' not found - image data not processed by exiv2:', false]}, section : 'Configuration', bool_yn : true)
287     endif
288 else
289     summary({'exiv2' : ['disabled - image data processed by exiv2:', false]}, section : 'Configuration', bool_yn : true)
290 endif
291
292 champlain_dep = []
293 champlain_gtk_dep = []
294 clutter_dep = []
295 clutter_gtk_dep = []
296 req_version_champlain = '>=0.12'
297 req_version_champlain_gtk = '>=0.12'
298 req_version_clutter = '>=1.0'
299 req_version_clutter_gtk = '>=1.0'
300 option = get_option('gps-map')
301 if not option.disabled()
302     champlain_dep = dependency('champlain-0.12', version : req_version_champlain, required : get_option('gps-map'))
303     champlain_gtk_dep = dependency('champlain-gtk-0.12', version : req_version_champlain_gtk, required : get_option('gps-map'))
304     if champlain_dep.found() and champlain_gtk_dep.found()
305         clutter_dep = dependency('clutter-1.0', version : req_version_clutter, required : get_option('gps-map'))
306         clutter_gtk_dep = dependency('clutter-gtk-1.0', version : req_version_clutter_gtk, required : get_option('gps-map'))
307         if clutter_dep.found() and clutter_gtk_dep.found()
308             conf_data.set('HAVE_CLUTTER', 1)
309             conf_data.set('HAVE_LIBCHAMPLAIN', 1)
310             conf_data.set('HAVE_LIBCHAMPLAIN_GTK', 1)
311             summary({'gps-map' : ['GPS map displayed', true]}, section : 'Configuration', bool_yn : true)
312         else
313             if not clutter_dep.found()
314                 summary({'gps-map-clutter' : ['clutter-1.0 ' + req_version_clutter + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
315             endif
316             if not clutter_gtk_dep.found()
317                 summary({'gps-map-clutter-gtk' : ['clutter-gtk-1.0 ' + req_version_clutter_gtk + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
318             endif
319         endif
320     else
321         if not champlain_dep.found()
322             summary({'gps-map-champlain' : ['champlain-0.12 ' + req_version_champlain + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
323         endif
324         if not champlain_gtk_dep.found()
325             summary({'gps-map-champlain-gtk' : ['champlain-gtk-0.12 ' + req_version_champlain_gtk + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
326         endif
327     endif
328 else
329     summary({'gps-map' : ['disabled - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
330 endif
331
332 libheif_dep = []
333 req_version = '>=1.3.2'
334 option = get_option('heif')
335 if not option.disabled()
336     libheif_dep = dependency('libheif', version : req_version, required : get_option('heif'))
337     if libheif_dep.found()
338         conf_data.set('HAVE_HEIF', 1)
339         summary({'heif' : ['heif files supported:', true]}, section : 'Configuration', bool_yn : true)
340     else
341         summary({'heif' : ['libheif ' + req_version + ' not found - heif files supported:', false]}, section : 'Configuration', bool_yn : true)
342     endif
343 else
344     summary({'heif' : ['disabled - heif files supported:', false]}, section : 'Configuration', bool_yn : true)
345 endif
346
347 libopenjp2_dep = []
348 req_version = '>=2.3.0'
349 option = get_option('j2k')
350 if not option.disabled()
351     libopenjp2_dep = dependency('libopenjp2', version : req_version, required : get_option('j2k'))
352     if libopenjp2_dep.found()
353         conf_data.set('HAVE_J2K', 1)
354         summary({'j2k' : ['j2k files supported:', true]}, section : 'Configuration', bool_yn : true)
355     else
356         summary({'j2k' : ['libopenjp2 ' + req_version + ' not found - j2k files supported:', false]}, section : 'Configuration', bool_yn : true)
357     endif
358 else
359     summary({'j2k' : ['disabled - j2k files supported:', false]}, section : 'Configuration', bool_yn : true)
360 endif
361
362 libjpeg_dep = []
363 option = get_option('jpeg')
364 if not option.disabled()
365 libjpeg_dep = dependency('libjpeg', required : get_option('jpeg'))
366     if libjpeg_dep.found()
367         if cc.has_function('jpeg_destroy_decompress', dependencies : libjpeg_dep)
368             conf_data.set('HAVE_JPEG', 1)
369             summary({'jpeg' : ['jpeg files supported:', true]}, section : 'Configuration', bool_yn : true)
370         else
371             summary({'jpeg' : ['jpeg_destroy_decompress not found - jpeg files supported:', false]}, section : 'Configuration', bool_yn : true)
372         endif
373     else
374         summary({'jpeg' : ['libjpeg: not found', false]}, section : 'Configuration', bool_yn : true)
375     endif
376 else
377     summary({'jpeg' : ['disabled - jpeg files supported:', false]}, section : 'Configuration', bool_yn : true)
378 endif
379
380 libjxl_dep = []
381 req_version = '>=0.3.7'
382 option = get_option('jpegxl')
383 if not option.disabled()
384     libjxl_dep = dependency('libjxl', version : req_version, required : get_option('jpegxl'))
385     if libjxl_dep.found()
386         conf_data.set('HAVE_JPEGXL', 1)
387         summary({'jpegxl' : ['jpegxl files supported:', true]}, section : 'Configuration', bool_yn : true)
388     else
389         summary({'jpegxl' : ['libjxl ' + req_version + ' not found - jpegxl files supported:', false]}, section : 'Configuration', bool_yn : true)
390     endif
391 else
392     summary({'jpegxl' : ['disabled - jpegxl files supported:', false]}, section : 'Configuration', bool_yn : true)
393 endif
394
395 libraw_dep = []
396 req_version = '>=0.20'
397 option = get_option('libraw')
398 if not option.disabled()
399     libraw_dep = dependency('libraw', version : req_version, required : get_option('libraw'))
400     if libraw_dep.found()
401         conf_data.set('HAVE_RAW', 1)
402         summary({'libraw' : ['.cr3 files supported:', true]}, section : 'Configuration', bool_yn : true)
403     else
404         summary({'libraw' : ['libraw ' + req_version + ' not found - .cr3 files supported:', false]}, section : 'Configuration', bool_yn : true)
405     endif
406 else
407     summary({'libraw' : ['disabled - .cr3 files supported:', false]}, section : 'Configuration', bool_yn : true)
408 endif
409
410 lua_dep = []
411 req_version = '>=5.3'
412 option = get_option('lua')
413 if not option.disabled()
414     lua_dep = dependency('lua', 'lua5.3', 'lua-5.3', 'lua53', version: req_version, required: get_option('lua'))
415     if lua_dep.found()
416         conf_data.set('HAVE_LUA', 1)
417         summary({'lua' : ['lua supported:', true]}, section : 'Configuration', bool_yn : true)
418     else
419         summary({'lua' : ['lua ' + req_version + ' not found - lua supported:', false]}, section : 'Configuration', bool_yn : true)
420     endif
421 else
422     summary({'lua' : ['disabled - lua supported:', false]}, section : 'Configuration', bool_yn : true)
423 endif
424
425 # Install standard documents
426 option = get_option('pandoc')
427 if not option.disabled()
428     pandoc = find_program('pandoc', required : false)
429     if pandoc.found()
430         readme_html = custom_target(
431             'README.html',
432             input: 'README.md',
433             output: 'README.html',
434             command: [pandoc, '@INPUT@', '-o', '@OUTPUT@'],
435             install: true,
436             install_dir: helpdir)
437
438         summary({'README' : ['README.html created:', true]}, section : 'Documentation', bool_yn : true)
439     else
440         summary({'README' : ['pandoc not found - README.html created:', false]}, section : 'Documentation', bool_yn : true)
441     endif
442 else
443     summary({'pandoc' : ['disabled - README.html created:', false]}, section : 'Documentation', bool_yn : true)
444 endif
445 install_data('README.md', 'COPYING', 'TODO', install_dir : helpdir)
446
447 poppler_glib_dep = []
448 req_version = '>=0.62'
449 option = get_option('pdf')
450 if not option.disabled()
451     poppler_glib_dep = dependency('poppler-glib', version : req_version, required : get_option('pdf'))
452     if poppler_glib_dep.found()
453         conf_data.set('HAVE_PDF', 1)
454         summary({'pdf'  : ['pdf files supported:', true]}, section : 'Configuration', bool_yn : true)
455     else
456         summary({'pdf' : ['poppler-glib ' + req_version + ' not found - pdf files supported:', false]}, section : 'Configuration', bool_yn : true)
457     endif
458 else
459     summary({'pdf' : ['disabled - pdf files supported:', false]}, section : 'Configuration', bool_yn : true)
460 endif
461
462 gspell_dep = []
463 req_version = '>=1.6'
464 option = get_option('spell')
465 if not option.disabled()
466     gspell_dep = dependency('gspell-1', version : req_version, required: get_option('spell'))
467     if gspell_dep.found()
468         conf_data.set('HAVE_SPELL', 1)
469         summary({'spell' : ['spelling checks enabled', true]}, section : 'Configuration', bool_yn : true)
470     else
471         summary({'spell' : ['gspell-1 ' + req_version + ' not found - spelling checks enabled', false]}, section : 'Configuration', bool_yn : true)
472     endif
473 else
474     summary({'spell' : ['disabled - spelling checks enabled', false]}, section : 'Configuration', bool_yn : true)
475 endif
476
477 tiff_dep = []
478 option = get_option('tiff')
479 if not option.disabled()
480     tiff_dep = dependency('libtiff-4', required: get_option('tiff'))
481     if tiff_dep.found()
482         if cc.has_function('TIFFClientOpen', dependencies : tiff_dep)
483             conf_data.set('HAVE_TIFF', 1)
484             summary({'tiff' : ['tiff files supported:', true]}, section : 'Configuration', bool_yn : true)
485         else
486             summary({'tiff' : ['TIFFClientOpen not found - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
487         endif
488     else
489         summary({'tiff' : ['libtiff not found - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
490     endif
491 else
492     summary({'tiff' : ['disabled - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
493 endif
494
495 libffmpegthumbnailer_dep = []
496 req_version = '>=2.1.0'
497 option = get_option('videothumbnailer')
498 if not option.disabled()
499     libffmpegthumbnailer_dep = dependency('libffmpegthumbnailer',
500         version : req_version,
501         required : get_option('videothumbnailer'))
502
503     if libffmpegthumbnailer_dep.found()
504         conf_data.set('HAVE_FFMPEGTHUMBNAILER', 1)
505         summary({'videothumbnailer' : ['thumbnails of video files supported:', true]}, section : 'Configuration', bool_yn : true)
506
507         result = cc.has_member('struct video_thumbnailer_struct', 'prefer_embedded_metadata', prefix : '#include <libffmpegthumbnailer/videothumbnailerc.h>')
508         if result
509             conf_data.set('HAVE_FFMPEGTHUMBNAILER_METADATA', 1)
510         endif
511         summary({'fmpegthumbnailer_metadata' : ['fmpegthumbnailer_metadata found:', result]}, section : 'Thumbnailer', bool_yn : true)
512
513         result = cc.has_member('struct image_data_struct', 'image_data_width', prefix : '#include <libffmpegthumbnailer/videothumbnailerc.h>' )
514         if result
515             conf_data.set('HAVE_FFMPEGTHUMBNAILER_RGB', 1)
516         endif
517         summary({'fmpegthumbnailer_rgb' : ['fmpegthumbnailer_rgb found:', result]}, section : 'Thumbnailer', bool_yn : true)
518
519         result = cc.has_function('video_thumbnailer_set_size', dependencies : libffmpegthumbnailer_dep)
520         if result
521             conf_data.set('HAVE_FFMPEGTHUMBNAILER_WH', 1)
522         endif
523         summary({'fmpegthumbnailer_set_size' : ['fmpegthumbnailer_set_size found:', result]}, section : 'Thumbnailer', bool_yn : true)
524     else
525         summary({'videothumbnailer' : ['libvideothumbnailer ' + req_version + ' not found - thumbnails of video files supported', false]}, section : 'Configuration', bool_yn : true)
526     endif
527 else
528     summary({'videothumbnailer' : ['disabled -thumbnails of video files supported', false]}, section : 'Configuration', bool_yn : true)
529 endif
530
531 libwebp_dep = []
532 req_version = '>=0.6.1'
533 option = get_option('webp')
534 if not option.disabled()
535     libwebp_dep = dependency('libwebp', version : req_version, required : get_option('webp'))
536     if libwebp_dep.found()
537         conf_data.set('HAVE_WEBP', 1)
538         summary({'webp' : ['webp files supported:', true]}, section : 'Configuration', bool_yn : true)
539     else
540         summary({'webp' : ['libwebp ' + req_version + ' not found - webp files supported:', false]}, section : 'Configuration', bool_yn : true)
541     endif
542 else
543     summary({'webp' : ['disabled - webp files supported:', false]}, section : 'Configuration', bool_yn : true)
544 endif
545
546 # Check for nl_langinfo and _NL_TIME_FIRST_WEEKDAY
547 code = '''#include <langinfo.h>
548 #include<stdio.h>
549 int main (int argc, char ** argv) {
550     char *c;
551     c =  nl_langinfo(_NL_TIME_FIRST_WEEKDAY);
552     return 0;
553 }'''
554 if cc.links(code, name : 'nl_langinfo and _NL_TIME_FIRST_WEEKDAY')
555     conf_data.set('HAVE__NL_TIME_FIRST_WEEKDAY', 1)
556     summary({'nl_langinfo' : ['first weekday depends on locale:', true]}, section : 'Documentation', bool_yn : true)
557 else
558     summary({'nl_langinfo' : ['nl_langinfo not found - first weekday depends on locale:', false, 'first weekday defaults to Monday']}, section : 'Documentation', bool_yn : true)
559 endif
560
561 conf_data.set_quoted('GETTEXT_PACKAGE', meson.project_name())
562 conf_data.set_quoted('GQ_APPDIR', gq_appdir)
563 conf_data.set_quoted('GQ_BINDIR', gq_bindir)
564 conf_data.set_quoted('GQ_HELPDIR', gq_helpdir)
565 conf_data.set_quoted('GQ_HTMLDIR', gq_htmldir)
566 conf_data.set_quoted('GQ_LOCALEDIR', gq_localedir)
567
568 conf_data.set_quoted('PACKAGE', meson.project_name())
569 conf_data.set_quoted('PACKAGE_NAME', meson.project_name())
570 conf_data.set_quoted('PACKAGE_STRING', meson.project_version())
571 conf_data.set_quoted('PACKAGE_TARNAME', meson.project_name())
572 conf_data.set_quoted('PACKAGE_VERSION', meson.project_version())
573 conf_data.set_quoted('VERSION', meson.project_version())
574
575 configure_file(input : 'config.h.in',
576                output : 'config.h',
577                encoding : 'UTF-8',
578                configuration : conf_data)
579
580 # For gtk builder checks on .ui files
581 ui_sources = []
582
583 # Process subdirs before the sources
584 subdir('po')
585 subdir('plugins')
586
587 # Generate the executable
588 subdir('src')
589
590 # Generate the help files
591 subdir('doc')
592
593 # Install other project files
594 if running_from_git
595     cmd = [find_program('gen_changelog.sh'), meson.current_source_dir(), meson.current_build_dir()]
596     custom_target(
597         'ChangeLog',
598         input: 'ChangeLog.gqview',
599         output: ['ChangeLog', 'ChangeLog.html'],
600         command: cmd,
601         install: true,
602         install_dir: helpdir)
603     meson.add_dist_script(cmd)
604     summary({'ChangeLog' : ['ChangeLog, ChangeLog.html created:', true]}, section : 'Documentation', bool_yn : true)
605 elif fs.exists('ChangeLog.html')
606     install_data('ChangeLog', 'ChangeLog.html', install_dir: helpdir)
607     summary({'ChangeLog' : ['ChangeLog, ChangeLog.html installed from dist:', true]}, section : 'Documentation', bool_yn : true)
608 endif
609
610 install_data('geeqie.png', install_dir : icondir)
611 install_data('geeqie.1', install_dir : mandir1)
612
613 i18n.merge_file(
614     input : 'org.geeqie.Geeqie.desktop.in',
615     output : 'org.geeqie.Geeqie.desktop',
616     type : 'desktop',
617     po_dir : podir,
618     install : true,
619     install_dir : join_paths(datadir, 'applications'))
620
621 i18n.merge_file(
622     input : 'org.geeqie.Geeqie.appdata.xml.in',
623     output : 'org.geeqie.Geeqie.appdata.xml',
624     type : 'xml',
625     po_dir : podir,
626     install : true,
627     install_dir : appdatadir)
628
629 configure_file(input: 'geeqie.spec.in', output: 'geeqie.spec', configuration: conf_data)
630
631 # Basic test of the executable
632 # is_parallel false is to avoid problems with images tests
633 xvfb = find_program('xvfb-run', required : false)
634 if xvfb.found()
635     test('Basic test', xvfb, args: ['--auto-servernum', geeqie_exe, '--version'], is_parallel : false, timeout: 100)
636     summary({'xvfb' : ['Test runs:', true]}, section : 'Testing', bool_yn : true)
637 else
638     summary({'xvfb' : ['Test runs:', false]}, section : 'Testing', bool_yn : true)
639 endif
640
641 # The tests are run on GitHub with all options disabled, and then
642 # Image tests use option devel as a flag so that normal users do not
643 # download the test image database.
644
645 # Image checks
646 option = get_option('devel')
647 if option.enabled()
648     if xvfb.found()
649         get_test_images_sh = find_program('get-test-images.sh', dirs : scriptsdir, required : true)
650         image_test_sh = find_program('image-test.sh', dirs : scriptsdir, required : true)
651
652         images_dir = join_paths(meson.current_build_dir(), 'test-images.p')
653
654         message('Downloading test images')
655         sources_list = run_command(get_test_images_sh, images_dir,  'https://github.com/caclark/geeqie-test.git', check: true)
656
657         sources = sources_list.stdout().strip().split('\n')
658
659         foreach image : sources
660             image_path = '@0@'.format(image)
661             path_array = image_path.split('/')
662             image_name = path_array[path_array.length() - 1]
663
664             if image_name.startswith('fail')
665                 test('Image_ ' + image_name, image_test_sh, args: [geeqie_exe, image], is_parallel : false, should_fail : true, timeout: 100)
666             else
667                 test('Image_ ' + image_name, image_test_sh, args: [geeqie_exe, image], is_parallel : false, timeout: 100)
668             endif
669         endforeach
670         summary({'Image tests' : ['Test runs:', true]}, section : 'Testing', bool_yn : true)
671     else
672         summary({'Image tests' : ['Test runs:', false]}, section : 'Testing', bool_yn : true)
673     endif
674 else
675     summary({'Image tests' : ['Test runs:', false]}, section : 'Testing', bool_yn : true)
676 endif
677
678 # Code correctness checks
679 if running_from_git
680     clang_tidy_exe = find_program('clang-tidy', required : false)
681     if clang_tidy_exe.found()
682         git_exe = find_program('git', required : true)
683         modified_file_list = run_command(git_exe, 'diff', '--name-only', check: true)
684         modified_files = modified_file_list.stdout().strip().split('\n')
685
686         foreach modified_file : modified_files
687             if modified_file.endswith('.cc')
688                 modified_file_path = '@0@'.format(modified_file)
689                 path_array = modified_file_path.split('/')
690                 modified_file_name = path_array[path_array.length() - 1]
691                 modified_file_full_path = join_paths(meson.project_source_root(), modified_file)
692
693                 test('Code Correctness_ ' + modified_file_name, clang_tidy_exe, args : ['-p', './build', '-quiet', modified_file_full_path], timeout : 100)
694             endif
695         endforeach
696
697         summary({'Code Correctness' : ['Test runs:', true]}, section : 'Testing', bool_yn : true)
698     else
699         summary({'Code Correctness' : ['Test runs:', false]}, section : 'Testing', bool_yn : true)
700     endif
701 else
702     summary({'Code Correctness' : ['Test runs:', false]}, section : 'Testing', bool_yn : true)
703 endif
704
705 # Lua test
706 option = get_option('lua')
707 if not option.disabled()
708     if lua_dep.found()
709         if xvfb.found()
710             lua_test_sh = find_program('lua-test.sh', dirs : scriptsdir, required : true)
711             test('Lua test', lua_test_sh, args: [geeqie_exe], is_parallel : false, timeout: 100)
712
713             summary({'lua' : ['Test runs:', true]}, section : 'Testing', bool_yn : true)
714         else
715             summary({'lua' : ['Test runs:', false]}, section : 'Testing', bool_yn : true)
716         endif
717     else
718         summary({'lua' : ['Test runs:', false]}, section : 'Testing', bool_yn : true)
719     endif
720 else
721     summary({'lua' : ['Test runs:', false]}, section : 'Testing', bool_yn : true)
722 endif
723
724 # Ancillary files test
725 test_ancillary_files_sh = find_program('test-ancillary-files.sh', dirs : scriptsdir, required : true)
726 test('Ancillary files', test_ancillary_files_sh, args: [meson.current_source_dir()], timeout: 100)
727
728 summary({'Ancillary files' : ['Test runs:', true]}, section : 'Testing', bool_yn : true)