forked from TexasInstruments/edgeai-gst-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
350 lines (306 loc) · 8.76 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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
project('GstTIOVX', ['c', 'cpp'],
version : '0.7.0',
meson_version : '>= 0.50',)
project_name = meson.project_name()
project_version = meson.project_version()
version_arr = project_version.split('.')
version_major = version_arr[0].to_int()
version_minor = version_arr[1].to_int()
version_micro = version_arr[2].to_int()
if version_arr.length() == 4
version_nano = version_arr[3].to_int()
else
version_nano = 0
endif
version_is_dev = version_minor % 2 == 1 and version_micro < 90
# Define gstreamer API version
api_version = '1.0'
# Required versions
gst_req = '>= 1.0.0'
# Find external dependencies
gst_dep = dependency('gstreamer-1.0', version : gst_req)
gst_base_dep = dependency('gstreamer-base-1.0', version : gst_req)
gst_video_dep = dependency('gstreamer-video-1.0', version : gst_req)
gst_check_dep = dependency('gstreamer-check-1.0',version : gst_req)
gst_allocator = dependency('gstreamer-allocators-1.0', version : gst_req)
gst_internal_dep = []
# Target SOC
cmd = run_command('sh', '-c', 'echo $SOC')
SOC = cmd.stdout().strip()
if SOC == ''
error('MESON_FAIL SOC not set.')
endif
# TI dependencies
imaging_deps = dependency('imaging')
tiovx_deps = dependency('tiovx')
ti_vision_apps_dep = dependency('ti_vision_apps')
edgeai_tiovx_modules_dep = dependency('edgeai_tiovx_modules')
edgeai_tiovx_kernels_dep = dependency('edgeai_tiovx_kernels')
ti_stereo_perception_dep = dependency('ti_stereo_perception')
edgeai_dl_inferer_dep = dependency('edgeai_dl_inferer')
edgeai_apps_utils_dep = dependency('edgeai_apps_utils')
# Find TIOVX dependencies and headers
c = meson.get_compiler('c')
#C math library
math_dep = c.find_library('m', required : true)
## Dependencies
# Define plugin dependencies
plugin_deps = [
gst_dep,
gst_base_dep,
gst_allocator,
gst_video_dep,
edgeai_apps_utils_dep,
math_dep
]
if get_option('dl-plugins').enabled()
plugin_deps += [
edgeai_dl_inferer_dep,
]
endif
if SOC == 'j721e' or SOC == 'j721s2' or SOC == 'j784s4' or SOC == 'am62a'
plugin_deps += [
imaging_deps,
tiovx_deps,
ti_vision_apps_dep,
edgeai_tiovx_modules_dep,
edgeai_tiovx_kernels_dep,
]
endif
if SOC == 'j721e' or SOC == 'j721s2' or SOC == 'j784s4'
plugin_deps += [
ti_stereo_perception_dep
]
endif
# Examples dependencies
example_deps = [
gst_dep,
gst_base_dep,
edgeai_apps_utils_dep,
]
if get_option('dl-plugins').enabled()
example_deps += [
edgeai_dl_inferer_dep,
]
endif
if SOC == 'j721e' or SOC == 'j721s2' or SOC == 'j784s4' or SOC == 'am62a'
example_deps += [
imaging_deps,
tiovx_deps,
ti_vision_apps_dep,
edgeai_tiovx_modules_dep,
edgeai_tiovx_kernels_dep,
]
endif
if SOC == 'j721e' or SOC == 'j721s2' or SOC == 'j784s4'
example_deps += [
ti_stereo_perception_dep
]
endif
# Define test dependencies
test_deps = [
gst_dep,
gst_base_dep,
gst_check_dep,
gst_allocator,
edgeai_apps_utils_dep,
]
if get_option('dl-plugins').enabled()
test_deps += [
edgeai_dl_inferer_dep,
]
endif
if SOC == 'j721e' or SOC == 'j721s2' or SOC == 'j784s4' or SOC == 'am62a'
test_deps += [
imaging_deps,
tiovx_deps,
ti_vision_apps_dep,
edgeai_tiovx_modules_dep,
edgeai_tiovx_kernels_dep,
]
endif
if SOC == 'j721e' or SOC == 'j721s2' or SOC == 'j784s4'
test_deps += [
ti_stereo_perception_dep
]
endif
# Verify if profiling was enabled
if get_option('profiling').enabled()
profiler_dep = dependency('libprofiler')
if(profiler_dep.found())
message('Profiling enabled: Building examples with profiling support.')
link_flags += ['-lprofiler']
c_flags += ['-DPROFILING']
# Update test test_deps to include profiler dependency
test_deps += [profiler_dep]
else
error('MESON_FAIL gperftools profiling library not found.')
endif
endif
# Define header directories
#libgsttiovx_inc_dir = include_directories('libgstc')
gst_ti_ovx_inc_dir = include_directories('gst-libs/')
configinc = include_directories('.')
# Define compiler args and include directories
c_args = ['-DHAVE_CONFIG_H']
if SOC == 'j721e'
c_args += ['-DSOC_J721E']
elif SOC == 'j721s2'
c_args += ['-DSOC_J721S2']
elif SOC == 'j784s4'
c_args += ['-DSOC_J784S4']
elif SOC == 'am62a'
c_args += ['-DSOC_AM62A']
elif SOC == 'am62x'
c_args += ['-DSOC_AM62X']
else
error('MESON_FAIL SOC =', SOC, 'Not supported')
endif
if get_option('dl-plugins').enabled()
c_args += ['-DDL_PLUGINS']
endif
if get_option('enable-tidl').enabled() and SOC != 'am62x'
c_args += ['-DENABLE_TIDL']
endif
cpp_args = c_args
# Define installation directories
lib_install_dir = get_option('libdir')
plugins_install_dir = join_paths(lib_install_dir, 'gstreamer-1.0')
plugins_pkgconfig_install_dir = join_paths(get_option('libdir'), 'pkgconfig')
# Internal installation directory
plugin_dir = []
# Get an object returns describing a compiler
cc = meson.get_compiler('c')
cc_cpp = meson.get_compiler('cpp')
# 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',
'-Wuninitialized',
'-Wunknown-pragmas',
'-Wunused-function',
'-Wunused-label',
'-Wunused-value',
'-Wunused-variable',
'-Werror',
]
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
if cc_cpp.has_argument (extra_arg)
# Add flag to the compiler command line
add_project_arguments([extra_arg], language: 'cpp')
endif
endforeach
# Create an empty configuration object to set config.h information
cdata = configuration_data()
plugin_url='https://www.ti.com/'
# Set config.h information
cdata.set_quoted('GST_API_VERSION', api_version)
cdata.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
cdata.set_quoted('LIBDIR', join_paths(get_option('prefix'), get_option('libdir')))
cdata.set_quoted('GST_API_VERSION', '1.0')
cdata.set_quoted('GST_LICENSE', 'TI Text File License (TSPA)')
cdata.set_quoted('PACKAGE', project_name)
cdata.set_quoted('PACKAGE_NAME', project_name)
cdata.set_quoted('PACKAGE_STRING', '@0@ @1@'.format(project_name,project_version))
cdata.set_quoted('PACKAGE_TARNAME', project_name)
cdata.set_quoted('PACKAGE_BUGREPORT', ' support@ridgerun.com')
cdata.set_quoted('PACKAGE_URL', plugin_url)
cdata.set_quoted('PACKAGE_VERSION', project_version)
cdata.set_quoted('PLUGINDIR', plugin_url)
cdata.set_quoted('VERSION', project_version)
if 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 version_nano == 0
gst_package_name = '@0@ source release'.format(project_name)
elif 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 = [
[ 'arm', 'HAVE_CPU_ARM' ],
[ 'aarch64', 'HAVE_CPU_AARCH64' ],
]
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',
'sys/resource.h',
]
foreach h : check_headers
if cc.has_header(h)
define = 'HAVE_' + h.underscorify().to_upper()
cdata.set(define, 1)
endif
endforeach
# Imports pkgconfig module
pkgconfig = import('pkgconfig')
# Install git hooks
python3 = import('python').find_installation()
run_command(python3, '-c', 'import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")')
# Meson will generate a header file all the entries in the configuration data object
configure_file(output : 'config.h', configuration : cdata)
# Enter to each subdirectory and execute the meson.build
subdir('gst-libs')
subdir('ext')
subdir('tests')
subdir('docs')