aboutsummaryrefslogtreecommitdiff
path: root/meson.build
blob: 4717bb2ae35f44a36ba4f9c8c08052eec6932fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
# Meson file for CrystFEL
project('crystfel', 'c',
        version: '0.11.0',
        license: 'GPL3+',
        meson_version: '>=0.55.0',
        default_options: ['buildtype=debugoptimized'])

libcrystfel_api_version = 17
crystfel_rpath = '$ORIGIN/../lib64/:$ORIGIN/../lib:$ORIGIN/../../asapo-libraries/lib:$ORIGIN/../../asapo-libraries/lib64'

add_project_arguments('-DHAVE_CONFIG_H', language: 'c')

versionc = vcs_tag(input: 'src/version.c.in',
                   output: 'version.c')


conf_data = configuration_data()

# Mandatory dependencies
cc = meson.get_compiler('c')
mdep = cc.find_library('m', required: true)
gsldep = dependency('gsl', required: true)
pthreaddep = dependency('threads', required: true)

# Find HDF5 using inbuilt Meson methods.  Requires Meson >= 0.50.0
hdf5dep = dependency('hdf5', language: 'c', required: get_option('hdf5'))
if hdf5dep.found()
  conf_data.set10('HAVE_HDF5', true)
  # Request HDF5 1.10-style API
  add_project_arguments('-DH5_USE_110_API', language: 'c')
  add_project_arguments('-DH5O_GET_INFO_BY_IDX1', language: 'c')
endif

fftwdep = dependency('fftw3', required: false)
if fftwdep.found()
  conf_data.set10('HAVE_FFTW', true)
endif

gnome = import('gnome')

gtkdep = dependency('gtk+-3.0', required: false)
if gtkdep.found()
  add_project_arguments('-Wno-deprecated-declarations', language: 'c')
  conf_data.set10('HAVE_GTK', true)
endif

cairodep = dependency('cairo', required: false)
if cairodep.found()
  conf_data.set10('HAVE_CAIRO', true)
endif

zmqdep = dependency('libzmq', required: false)
if zmqdep.found()
  conf_data.set10('HAVE_ZMQ', true)
endif

# There are two separate dependencies for ASAP::O (consumer and producer)
# We need both of them.
asapoproddep = dependency('libasapo-producer', required: false)
if asapoproddep.found()
  asapodep = dependency('libasapo-consumer', required: true)
  if asapodep.found()
    conf_data.set10('HAVE_ASAPO', true)
  endif
else
  asapodep = dependency('', required: false)
endif

if cc.has_function('clock_gettime', prefix: '#include <time.h>')
  conf_data.set10('HAVE_CLOCK_GETTIME', true)
endif

if cc.has_function('sched_setaffinity',
                   prefix: '#include <sched.h>',
                   args: '-D_GNU_SOURCE')
  conf_data.set10('HAVE_SCHED_SETAFFINITY', true)
endif

# ************************ libcrystfel (subdir) ************************

subdir('libcrystfel')

# ************************ The programs ************************

configure_file(input: 'config.h.in',
               output: 'config.h',
               configuration: conf_data)
conf_inc = include_directories('.')

# cell_tool
executable('cell_tool',
           ['src/cell_tool.c', versionc],
           dependencies: [mdep, libcrystfeldep],
           install: true,
           install_rpath: '$ORIGIN/../lib64/:$ORIGIN/../lib')

# process_hkl
process_hkl = executable('process_hkl',
                         ['src/process_hkl.c', versionc],
                         dependencies: [mdep, libcrystfeldep],
                         install: true,
                         install_rpath: '$ORIGIN/../lib64/:$ORIGIN/../lib')

# list_events
executable('list_events',
           ['src/list_events.c', versionc],
           dependencies: [mdep, libcrystfeldep],
           install: true,
           install_rpath: '$ORIGIN/../lib64/:$ORIGIN/../lib')

# get_hkl
executable('get_hkl',
           ['src/get_hkl.c', versionc],
           dependencies: [mdep, libcrystfeldep, gsldep],
           install: true,
           install_rpath: '$ORIGIN/../lib64/:$ORIGIN/../lib')

# compare_hkl
executable('compare_hkl',
           ['src/compare_hkl.c', versionc],
           dependencies: [mdep, libcrystfeldep, gsldep],
           install: true,
           install_rpath: crystfel_rpath)

# check_hkl
executable('check_hkl',
           ['src/check_hkl.c', versionc],
           dependencies: [mdep, libcrystfeldep, gsldep],
           install: true,
           install_rpath: '$ORIGIN/../lib64/:$ORIGIN/../lib')

# partialator
partialator = executable('partialator',
                         ['src/partialator.c',
                          'src/post-refinement.c',
                          'src/merge.c',
                          'src/rejection.c',
                          'src/scaling.c',
                          versionc],
                         dependencies: [mdep, libcrystfeldep, gsldep, pthreaddep],
                         install: true,
                         install_rpath: crystfel_rpath)

# ambigator
executable('ambigator',
           ['src/ambigator.c', versionc],
           dependencies: [mdep, libcrystfeldep, gsldep, hdf5dep],
           install: true,
           install_rpath: crystfel_rpath)

# whirligig
executable('whirligig',
           ['src/whirligig.c', versionc],
           dependencies: [mdep, libcrystfeldep],
           install: true,
           install_rpath: crystfel_rpath)

# align_detector
executable('align_detector',
           ['src/align_detector.c', versionc],
           dependencies: [mdep, libcrystfeldep],
           install: true,
           install_rpath: '$ORIGIN/../lib64/:$ORIGIN/../lib')

# Millepede subproject gives us 'pede', needed for align_detector
subproject('millepede', required: false)

# adjust_detector
adjust_detector = executable('adjust_detector',
                             ['src/adjust_detector.c', versionc],
                             dependencies: [mdep, libcrystfeldep],
                             install: true,
                             install_rpath: '$ORIGIN/../lib64/:$ORIGIN/../lib')

# indexamajig
indexamajig_sources = ['src/indexamajig.c', 'src/im-sandbox.c',
                       'src/process_image.c',
                       versionc]
if zmqdep.found()
  indexamajig_sources += ['src/im-zmq.c']
endif

if asapodep.found()
  indexamajig_sources += ['src/im-asapo.c']
endif

indexamajig = executable('indexamajig', indexamajig_sources,
                         dependencies: [mdep, libcrystfeldep, gsldep,
                                        pthreaddep, zmqdep, asapodep, asapoproddep],
                         install: true,
                         install_rpath: crystfel_rpath)

# make_pixelmap
if hdf5dep.found()
  executable('make_pixelmap',
             ['src/make_pixelmap.c', versionc],
             dependencies: [mdep, libcrystfeldep, hdf5dep],
             install: true,
             install_rpath: crystfel_rpath)
endif


# CrystFEL GUI
if gtkdep.found()

  gui_sources = ['src/crystfel_gui.c',
                 'src/crystfelimageview.c',
                 'src/crystfelindexingopts.c',
                 'src/crystfelmergeopts.c',
                 'src/crystfelsymmetryselector.c',
                 'src/crystfelcolourscale.c',
                 'src/crystfelfomgraph.c',
                 'src/gtk-util-routines.c',
                 'src/gui_import.c',
                 'src/gui_peaksearch.c',
                 'src/gui_index.c',
                 'src/gui_merge.c',
                 'src/gui_fom.c',
                 'src/gui_export.c',
                 'src/gui_ambi.c',
                 'src/gui_align.c',
                 'src/gui_backend_local.c',
                 'src/gui_backend_slurm.c',
                 'src/gui_project.c',
                 'src/gtkmultifilechooserbutton.c',
                 versionc]

  gresources = gnome.compile_resources('crystfel-gui-resources',
                                       'data/crystfel.gresource.xml',
                                       source_dir: 'data', c_name: 'crystfel')

  executable('crystfel', gui_sources, gresources,
             dependencies: [mdep, libcrystfeldep, gtkdep, gsldep],
             install: true,
             install_rpath: crystfel_rpath)

  install_data(['data/crystfel.desktop'],
               install_dir: get_option('datadir') / 'applications')

endif

# render_hkl
executable('render_hkl',
           ['src/render_hkl.c', versionc],
           dependencies: [mdep, libcrystfeldep, cairodep, gsldep],
           install: true,
           install_rpath: crystfel_rpath)

# cell_explorer
if gtkdep.found()
  executable('cell_explorer',
             ['src/cell_explorer.c', 'src/multihistogram.c', versionc],
             dependencies: [mdep, libcrystfeldep, gtkdep, gsldep],
             install: true,
             install_rpath: crystfel_rpath)

  install_data(['data/cell_explorer.desktop'],
               install_dir: get_option('datadir') / 'applications')
endif


# ************************ Misc resources ************************

install_data(['data/crystfel.svg'],
             install_dir: get_option('datadir')+'/icons/hicolor/scalable/apps')


# ************************ Scripts ************************

install_data(['scripts/detector-shift',
              'scripts/peakogram-stream'],
             install_dir: 'bin')


# ************************ Testing ************************

subdir('tests')


# ************************ Manual pages ************************

pandoc = find_program('pandoc', version: '>=2.0.0', required: false)
if pandoc.found()
  mdfmt = 'markdown-smart'
else
  pandoc = find_program('pandoc', required: false)
  mdfmt = 'markdown'
endif


pandoc_pages = ['indexamajig.1.md',
                'adjust_detector.1.md',
                'align_detector.1.md']

if pandoc.found()
  foreach page : pandoc_pages
    custom_target(page,
                  input: join_paths('doc/man', page),
                  output: '@BASENAME@',
                  command: [pandoc, '@INPUT@','-o', '@OUTPUT@',
                            '-s', '-f', mdfmt, '-t', 'man'],
                  install: true,
                  install_dir: join_paths(get_option('mandir'), 'man1'))
  endforeach

  custom_target('crystfel_geometry.5.md',
                input: 'doc/man/crystfel_geometry.5.md',
                output: 'crystfel_geometry.5',
                command: [pandoc, '@INPUT@','-o', '@OUTPUT@',
                          '-s', '-f', mdfmt, '-t', 'man'],
                install: true,
                install_dir: join_paths(get_option('mandir'), 'man5'))

endif

install_man(['doc/man/ambigator.1',
             'doc/man/cell_explorer.1',
             'doc/man/cell_tool.1',
             'doc/man/check_hkl.1',
             'doc/man/compare_hkl.1',
             'doc/man/crystfel.7',
             'doc/man/get_hkl.1',
             'doc/man/list_events.1',
             'doc/man/list_events.1',
             'doc/man/make_pixelmap.1',
             'doc/man/partialator.1',
             'doc/man/process_hkl.1',
             'doc/man/render_hkl.1',
             'doc/man/whirligig.1'])