summaryrefslogtreecommitdiff
path: root/src/meson.build
blob: 3a6118bd3ea8964d007ae868713f4d94192f763d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# SPDX-License-Identifier: CC0-1.0

gen_image_sources = files([
    'gen-image.c',
])

monotonic_ts_sources = files([
    'monotonic-ts.c',
])

m_dep = cc.find_library('m', required : false)

executable('gen-image', gen_image_sources,
           dependencies : [m_dep],
           install : true,
           install_dir : '')

executable('monotonic-ts', monotonic_ts_sources,
           dependencies : [m_dep],
           install : true,
           install_dir : '')