-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathmeson.build
More file actions
45 lines (41 loc) · 975 Bytes
/
meson.build
File metadata and controls
45 lines (41 loc) · 975 Bytes
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
# This Meson script is experimental and potentially incomplete. It is not part
# of the supported build system for Micro-Manager or mmCoreAndDevices (yet).
project(
'mmdev-Utilities',
'cpp',
meson_version: '>= 1.8.3',
default_options: [
'cpp_std=c++14',
'warning_level=3',
],
)
mmdevice_dep = dependency('mmdevice')
sources = [
'AutoFocusStage.cpp',
'ComboXYStage.cpp',
'DAGalvo.cpp',
'DAMonochromator.cpp',
'DAShutter.cpp',
'DATTLStateDevice.cpp',
'DAXYStage.cpp',
'DAZStage.cpp',
'MultiCamera.cpp',
'MultiDAStateDevice.cpp',
'MultiShutter.cpp',
'MultiStage.cpp',
'PropertyShutter.cpp',
'SerialDTRShutter.cpp',
'SingleAxisStage.cpp',
'StateDeviceShutter.cpp',
'Utilities.cpp',
]
shared_module(
'Utilities',
sources,
dependencies: [
mmdevice_dep,
],
gnu_symbol_visibility: 'inlineshidden',
name_prefix: '',
name_suffix: 'mmdev',
)