forked from containers/conmon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
78 lines (71 loc) · 2.32 KB
/
meson.build
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
project('conmon', 'c',
version : run_command('cat', files('VERSION'),).stdout().strip(),
license : 'Apache-2.0',
default_options : [
'c_std=c99',
],
meson_version : '>= 0.46',
)
git_commit = ''
git = find_program('git', required : false)
if git.found()
git_commit = run_command(
git,
['--git-dir=@0@/.git'.format(meson.source_root()),
'rev-parse', 'HEAD']).stdout().strip()
git_dirty = run_command(
git,
['--git-dir=@0@/.git'.format(meson.source_root()),
'status', '--porcelain', '--untracked-files=no']).stdout().strip()
if git_dirty != ''
git_commit = git_commit + '-dirty'
endif
endif
conf = configuration_data()
conf.set_quoted('VERSION', meson.project_version())
conf.set_quoted('GIT_COMMIT', git_commit)
add_project_arguments('-Os', '-Wall', '-Werror',
'-DVERSION=' + conf.get('VERSION'),
'-DGIT_COMMIT=' + conf.get('GIT_COMMIT'),
language : 'c')
glib = dependency('glib-2.0')
libdl = cc.find_library('dl')
executable('conmon',
['src/conmon.c',
'src/config.h',
'src/cmsg.c',
'src/cmsg.h',
'src/ctr_logging.c',
'src/ctr_logging.h',
'src/cgroup.c',
'src/cgroup.h',
'src/cli.c',
'src/cli.h',
'src/conn_sock.c',
'src/conn_sock.h',
'src/ctr_exit.c',
'src/ctr_exit.h',
'src/ctrl.c',
'src/ctrl.h',
'src/ctr_logging.c',
'src/ctr_logging.h',
'src/ctr_stdio.c',
'src/ctr_stdio.h',
'src/globals.c',
'src/globals.h',
'src/close_fds.c',
'src/close_fds.h',
'src/oom.c',
'src/oom.h',
'src/parent_pipe_fd.c',
'src/parent_pipe_fd.h',
'src/runtime_args.c',
'src/runtime_args.h',
'src/utils.c',
'src/utils.h',
'src/seccomp_notify.c',
'src/seccomp_notify.h'],
dependencies : [glib, libdl],
install : true,
install_dir : join_paths(get_option('libexecdir'), 'podman'),
)