-
Notifications
You must be signed in to change notification settings - Fork 55
/
meson.build
291 lines (258 loc) · 7.72 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
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
project('gstd', 'c',
version : '0.15.2',
meson_version : '>= 0.50',
default_options : [
'c_std=c11',
]
)
gstd_version = meson.project_version()
version_arr = gstd_version.split('.')
gstd_version_major = version_arr[0].to_int()
gstd_version_minor = version_arr[1].to_int()
gstd_version_micro = version_arr[2].to_int()
if version_arr.length() == 4
gstd_version_nano = version_arr[3].to_int()
else
gstd_version_nano = 0
endif
gstd_version_is_dev = gstd_version_minor % 2 == 1 and gstd_version_micro < 90
# Find external dependencies
gst_dep = dependency('gstreamer-1.0', version : '>=1.0.0')
gst_base_dep = dependency('gstreamer-base-1.0', version : '>=1.0.0')
gio_unix_dep = dependency('gio-unix-2.0', version : '>=2.44.1')
json_glib_dep = dependency('json-glib-1.0', version : '>=0.16.2')
libd_dep = dependency('libdaemon', version : '>=0.14')
jansson_dep = dependency('jansson', version : '>=2.7')
thread_dep = dependency('threads')
libsoup_dep = dependency('libsoup-2.4', version : '>=2.4')
libedit_dep = dependency('libedit', version : '>=3.0')
gst_check_required = get_option('enable-tests').enabled()
gst_check_dep = dependency('gstreamer-check-1.0', required : gst_check_required, version : '>=1.0.5')
systemd_required = get_option('enable-systemd').enabled()
systemd_dep = dependency('systemd', required : systemd_required, version : '>=232')
cc = meson.get_compiler('c')
## Dependencies
# Define gst Daemon dependencies
gstd_deps = [
libd_dep
]
# Define gst client library dependencies
libgstc_deps = [
gst_base_dep,
json_glib_dep,
jansson_dep,
thread_dep
]
# Define gst core library dependencies
libgstd_deps = [
gst_base_dep,
gio_unix_dep,
json_glib_dep,
jansson_dep,
thread_dep,
libsoup_dep
]
# Define gst client application dependencies
gst_client_deps = [
libedit_dep,
json_glib_dep,
gio_unix_dep
]
# Define test dependencies
test_libgstc_deps=[
gst_base_dep,
json_glib_dep,
jansson_dep,
thread_dep,
gst_check_dep
]
test_gstd_deps=[
gst_base_dep,
gio_unix_dep,
json_glib_dep,
libd_dep,
jansson_dep,
gst_check_dep
]
test_libgstd_deps=[
gst_base_dep,
gio_unix_dep,
json_glib_dep,
libd_dep,
jansson_dep,
thread_dep,
libsoup_dep,
gst_check_dep
]
# Define header directories
lib_gstc_inc_dir = include_directories('libgstc/c')
gstd_inc_dir = include_directories('gstd')
libgstd_inc_dir = include_directories('libgstd')
configinc = include_directories('.')
# Define gstreamer API version
apiversion = '1.0'
# Define installation directories
prefix = get_option('prefix')
lib_install_dir = get_option('libdir')
# Internal installation directory
lib_gstd_dir = []
lib_gstc_dir = []
# Define compiler args and include directories
runstatedir = get_option('with-gstd-runstatedir') + '/'
if runstatedir == '${prefix}/var/run/gstd/'
runstatedir = prefix + '/var/run/gstd/'
endif
gstd_run_state_dir = '-DGSTD_RUN_STATE_DIR="@0@"'.format(runstatedir)
logstatedir = get_option('with-gstd-logstatedir') + '/'
if logstatedir == '${prefix}/var/log/gstd/'
logstatedir = prefix + '/var/log/gstd/'
endif
gstd_log_state_dir = '-DGSTD_LOG_STATE_DIR="@0@"'.format(logstatedir)
gst_c_args = ['-DHAVE_CONFIG_H',gstd_log_state_dir,gstd_run_state_dir]
gst_d_args = ['-DHAVE_CONFIG_H',gstd_log_state_dir,gstd_run_state_dir]
# Get an object returns describing a compiler
cc = meson.get_compiler('c')
# Verify if the warning flags are available in the compiler
# If the flags is availale for the compiler it wiil be used in all compiler
# invocations with the exception of compile tests.
warning_flags = [
'-Wmissing-declarations',
'-Wmissing-prototypes',
'-Wredundant-decls',
'-Wundef',
'-Wwrite-strings',
'-Wformat',
'-Wformat-nonliteral',
'-Wformat-security',
'-Wold-style-definition',
'-Winit-self',
'-Wmissing-include-dirs',
'-Waddress',
'-Waggregate-return',
'-Wno-multichar',
'-Wdeclaration-after-statement',
'-Wvla',
'-Wpointer-arith',
]
foreach extra_arg : warning_flags
if cc.has_argument (extra_arg)
# Add flag to the compiler command line
add_project_arguments([extra_arg], language: 'c')
endif
endforeach
# Create an empty configuration object to set config.h information
cdata = configuration_data()
pkg_gstd_url='https://developer.ridgerun.com/wiki/index.php?title=GStreamer_Daemon'
# Set config.h information
cdata.set_quoted('GST_API_VERSION', apiversion)
cdata.set_quoted('LOCALEDIR', join_paths(prefix, get_option('localedir')))
cdata.set_quoted('LIBDIR', join_paths(prefix, get_option('libdir')))
cdata.set_quoted('GST_API_VERSION', '1.0')
cdata.set_quoted('GST_LICENSE', 'LGPL')
cdata.set_quoted('PACKAGE', 'gstd')
cdata.set_quoted('PACKAGE_NAME', 'gstd')
cdata.set_quoted('PACKAGE_STRING', 'gstd @0@'.format(gstd_version))
cdata.set_quoted('PACKAGE_TARNAME', 'gstd')
cdata.set_quoted('PACKAGE_BUGREPORT', ' https://github.com/RidgeRun/gstd-1.x.git')
cdata.set_quoted('PACKAGE_URL', pkg_gstd_url)
cdata.set_quoted('PACKAGE_VERSION', gstd_version)
cdata.set_quoted('PLUGINDIR', lib_install_dir)
cdata.set_quoted('VERSION', gstd_version)
if gstd_version_nano > 0
# Have GST_ERROR message printed when running from git
cdata.set('GST_LEVEL_DEFAULT', 'GST_LEVEL_ERROR')
else
cdata.set('GST_LEVEL_DEFAULT', 'GST_LEVEL_NONE')
endif
# GStreamer package name and origin url
gst_package_name = get_option('package-name')
if gst_package_name == ''
if gstd_version_nano == 0
gst_package_name = 'Gstd source release'
elif gstd_version_nano == 1
gst_package_name = 'GStreamer git'
else
gst_package_name = 'GStreamer prerelease'
endif
endif
cdata.set_quoted('GST_PACKAGE_NAME', gst_package_name)
cdata.set_quoted('GST_PACKAGE_ORIGIN', get_option('package-origin'))
# These are only needed/used by the ABI tests
host_defines = [
[ 'x86', 'HAVE_CPU_I386' ],
[ 'x86_64', 'HAVE_CPU_X86_64' ],
[ 'arm', 'HAVE_CPU_ARM' ],
[ 'aarch64', 'HAVE_CPU_AARCH64' ],
[ 'mips', 'HAVE_CPU_MIPS' ],
[ 'powerpc', 'HAVE_CPU_PPC' ],
[ 'powerpc64', 'HAVE_CPU_PPC64' ],
[ 'alpha', 'HAVE_CPU_ALPHA' ],
[ 'sparc', 'HAVE_CPU_SPARC' ],
[ 'ia64', 'HAVE_CPU_IA64' ],
[ 'hppa', 'HAVE_CPU_HPPA' ],
[ 'm68k', 'HAVE_CPU_M68K' ],
[ 's390', 'HAVE_CPU_S390' ],
]
foreach h : host_defines
if h.get(0) == host_machine.cpu()
cdata.set(h.get(1), 1)
else
cdata.set(h.get(1), false)
endif
endforeach
cdata.set_quoted('HOST_CPU', host_machine.cpu())
# Verify if the specified header exists
check_headers = [
'dlfcn.h',
'inttypes.h',
'memory.h',
'poll.h',
'stdint.h',
'stdlib.h',
'stdio_ext.h',
'strings.h',
'string.h',
'sys/param.h',
'sys/poll.h',
'sys/prctl.h',
'sys/socket.h',
'sys/stat.h',
'sys/times.h',
'sys/time.h',
'sys/types.h',
'sys/utsname.h',
'sys/wait.h',
'ucontext.h',
'unistd.h',
'valgrind/valgrind.h',
'sys/resource.h',
]
foreach h : check_headers
if cc.has_header(h)
define = 'HAVE_' + h.underscorify().to_upper()
cdata.set(define, 1)
endif
endforeach
# Gtk documentation
gnome = import('gnome')
# Imports pkgconfig module
pkgconfig = import('pkgconfig')
# Install git hooks
run_command('rm', '-f', '.git/hooks/pre-commit',
'.git/hooks/pre-commit', check: false)
r = run_command('ln', '-s', '../../common/hooks/pre-commit.hook', '.git/hooks/pre-commit', check: false)
if r.returncode() != 0
warning('Failed to create commit hook')
endif
# Meson will generate a header file all the entries in the configuration data object
configure_file(output : 'config.h', configuration : cdata)
add_project_arguments(['-D_GNU_SOURCE'], language: 'c')
# Enter to each subdirectory and execute the meson.build
subdir('libgstc')
subdir('libgstd')
subdir('gstd')
subdir('gst_client')
subdir('tests')
subdir('examples')
subdir('docs')
subdir('init')