-
Notifications
You must be signed in to change notification settings - Fork 139
/
meson.build
124 lines (106 loc) · 2.53 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
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
project(
'mako',
'c',
version: '1.9.0',
license: 'MIT',
meson_version: '>=0.60.0',
default_options: [
'c_std=c11',
'warning_level=2',
'werror=true',
],
)
add_project_arguments([
'-D_POSIX_C_SOURCE=200809L',
'-Wundef',
'-Wno-unused-parameter',
'-Wno-missing-braces',
], language: 'c')
mako_inc = include_directories('include')
cc = meson.get_compiler('c')
cairo = dependency('cairo')
pango = dependency('pango')
pangocairo = dependency('pangocairo')
glib = dependency('glib-2.0')
gobject = dependency('gobject-2.0')
realtime = cc.find_library('rt')
wayland_client = dependency('wayland-client')
wayland_protos = dependency('wayland-protocols', version: '>=1.32')
wayland_cursor = dependency('wayland-cursor')
epoll = dependency('', required: false)
if (not cc.has_function('timerfd_create', prefix: '#include <sys/timerfd.h>') or
not cc.has_function('signalfd', prefix: '#include <sys/signalfd.h>'))
epoll = dependency('epoll-shim')
endif
if get_option('sd-bus-provider') == 'auto'
assert(get_option('auto_features').auto(), 'sd-bus-provider must not be set to auto since auto_features != auto')
sdbus = dependency('libsystemd', 'libelogind', 'basu')
else
sdbus = dependency(get_option('sd-bus-provider'))
endif
add_project_arguments('-DHAVE_' + sdbus.name().to_upper(), language: 'c')
gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: get_option('icons'))
if gdk_pixbuf.found()
add_project_arguments('-DHAVE_ICONS', language: 'c')
endif
subdir('contrib/completions')
subdir('protocol')
src_files = [
'config.c',
'event-loop.c',
'dbus/dbus.c',
'dbus/mako.c',
'dbus/xdg.c',
'main.c',
'mode.c',
'notification.c',
'pool-buffer.c',
'render.c',
'wayland.c',
'criteria.c',
'types.c',
'surface.c',
'icon.c',
'string-util.c',
]
if gdk_pixbuf.found()
src_files += 'cairo-pixbuf.c'
endif
executable(
'mako',
files(src_files) + protocols_src,
dependencies: [
cairo,
epoll,
gdk_pixbuf,
sdbus,
pango,
pangocairo,
glib,
gobject,
realtime,
wayland_client,
wayland_cursor,
],
include_directories: [mako_inc],
install: true,
)
install_data(
'makoctl',
install_dir: get_option('bindir'),
install_mode: 'rwxr-xr-x',
)
conf_data = configuration_data()
conf_data.set('bindir', get_option('prefix') / get_option('bindir'))
configure_file(
configuration: conf_data,
input: 'fr.emersion.mako.service.in',
output: '@BASENAME@',
install_dir: get_option('datadir') + '/dbus-1/services',
)
subdir('doc')
summary({
'sd-bus provider': sdbus.name(),
'Icons': gdk_pixbuf.found(),
'Man pages': scdoc.found(),
}, bool_yn: true)