2017-12-06 10:58:23 +00:00
|
|
|
project('All GStreamer modules', 'c',
|
2019-04-19 01:34:33 +00:00
|
|
|
version : '1.17.0.1',
|
2018-10-20 22:04:25 +00:00
|
|
|
meson_version : '>= 0.48.0',
|
2017-12-06 10:58:23 +00:00
|
|
|
default_options : ['buildtype=debugoptimized'])
|
2016-08-24 15:10:21 +00:00
|
|
|
|
2016-09-05 14:54:46 +00:00
|
|
|
gst_version = '>= @0@'.format(meson.project_version())
|
2018-03-20 01:08:23 +00:00
|
|
|
gst_branch = 'master'
|
2016-08-24 15:10:21 +00:00
|
|
|
|
|
|
|
glib_req = '>= 2.40.0'
|
|
|
|
|
2018-05-17 08:25:43 +00:00
|
|
|
build_system = build_machine.system()
|
2016-11-19 13:16:03 +00:00
|
|
|
cc = meson.get_compiler('c')
|
2018-04-13 09:26:33 +00:00
|
|
|
|
|
|
|
# Make it possible to use msys2 built zlib which fails
|
|
|
|
# when not using the mingw toolchain as it uses unistd.h
|
2016-11-19 13:16:03 +00:00
|
|
|
if not meson.is_subproject() and cc.get_id() == 'msvc'
|
2018-04-22 00:50:06 +00:00
|
|
|
uname = find_program('uname', required: false)
|
|
|
|
if uname.found()
|
|
|
|
ret = run_command(uname, '-o')
|
|
|
|
if ret.returncode() == 0 and ret.stdout().to_lower() == 'msys'
|
|
|
|
ret = run_command(uname, '-r')
|
|
|
|
# The kernel version returned by uname is actually the msys version
|
|
|
|
if ret.returncode() == 0 and ret.stdout().startswith('2')
|
|
|
|
# If a system zlib is found, disable UNIX features in zlib.h and zconf.h
|
|
|
|
if cc.find_library('z').found()
|
|
|
|
add_global_arguments('-DZ_SOLO', language: 'c')
|
|
|
|
endif
|
2018-04-13 09:26:33 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2016-11-19 13:16:03 +00:00
|
|
|
endif
|
|
|
|
|
2019-02-18 16:13:07 +00:00
|
|
|
# Ordered list of subprojects (dict has no ordering guarantees)
|
|
|
|
subprojects = [
|
|
|
|
['gstreamer', {}],
|
|
|
|
['gst-plugins-base', {}],
|
|
|
|
['gst-plugins-good', {}],
|
2019-04-05 13:27:37 +00:00
|
|
|
['libnice', { 'option': get_option('libnice'), 'match_gst_version': false}],
|
2019-02-18 16:13:07 +00:00
|
|
|
['gst-plugins-bad', { 'option': get_option('bad') }],
|
|
|
|
['gst-plugins-ugly', { 'option': get_option('ugly') }],
|
|
|
|
['gst-libav', { 'option': get_option('libav') }],
|
|
|
|
['gst-rtsp-server', { 'option': get_option('rtsp_server') }],
|
2019-03-13 22:08:59 +00:00
|
|
|
['gst-devtools', { 'option': get_option('devtools')}],
|
|
|
|
['gst-integration-testsuites', { 'option': get_option('devtools') }],
|
2019-02-18 16:13:07 +00:00
|
|
|
['gst-editing-services', { 'option': get_option('ges') }],
|
|
|
|
['gstreamer-vaapi', { 'option': get_option('vaapi') }],
|
|
|
|
['gst-omx', { 'option': get_option('omx'), }],
|
|
|
|
['gstreamer-sharp', { 'option': get_option('sharp') }],
|
2019-04-05 13:27:37 +00:00
|
|
|
['pygobject', { 'option': get_option('python'), 'match_gst_version': false }],
|
2019-02-18 16:13:07 +00:00
|
|
|
['gst-python', { 'option': get_option('python') }],
|
|
|
|
]
|
2017-08-22 19:29:58 +00:00
|
|
|
|
2019-02-18 16:53:07 +00:00
|
|
|
python3 = import('python').find_installation()
|
2016-10-20 21:12:53 +00:00
|
|
|
symlink = '''
|
|
|
|
import os
|
|
|
|
|
|
|
|
os.symlink(os.path.join('@1@', 'subprojects', '@0@'),
|
2018-07-12 14:14:33 +00:00
|
|
|
os.path.join('@1@', '@0@'))
|
2016-10-20 21:12:53 +00:00
|
|
|
'''
|
2017-03-07 23:31:26 +00:00
|
|
|
|
2019-01-24 16:11:59 +00:00
|
|
|
if build_system == 'windows'
|
2018-05-17 08:25:43 +00:00
|
|
|
subproject('win-flex-bison-binaries')
|
2019-02-05 17:13:30 +00:00
|
|
|
subproject('win-nasm')
|
2018-05-17 08:25:43 +00:00
|
|
|
endif
|
|
|
|
|
2019-01-29 01:58:21 +00:00
|
|
|
subproject('orc', required: get_option('orc'))
|
|
|
|
|
2018-07-12 14:14:33 +00:00
|
|
|
subprojects_names = []
|
2019-02-18 16:13:07 +00:00
|
|
|
foreach sp : subprojects
|
|
|
|
project_name = sp[0]
|
|
|
|
build_infos = sp[1]
|
2018-10-20 22:04:25 +00:00
|
|
|
is_required = build_infos.get('option', true)
|
2019-04-05 13:27:37 +00:00
|
|
|
match_gst_version = build_infos.get('match_gst_version', true)
|
|
|
|
|
|
|
|
if match_gst_version
|
|
|
|
subproj = subproject(project_name, version: gst_version, required: is_required)
|
|
|
|
else
|
|
|
|
subproj = subproject(project_name, required: is_required)
|
|
|
|
endif
|
|
|
|
|
2018-10-20 22:04:25 +00:00
|
|
|
if subproj.found()
|
|
|
|
subprojects_names += [project_name]
|
|
|
|
cmdres = run_command(python3, '-c', symlink.format(project_name, meson.current_source_dir()))
|
|
|
|
if cmdres.returncode() == 0
|
2018-07-12 14:14:33 +00:00
|
|
|
message('Created symlink to ' + project_name)
|
2016-10-20 21:12:53 +00:00
|
|
|
endif
|
2018-10-20 22:04:25 +00:00
|
|
|
endif
|
2016-08-24 15:10:21 +00:00
|
|
|
endforeach
|
|
|
|
|
2018-07-12 14:14:33 +00:00
|
|
|
foreach custom_subproj: get_option('custom_subprojects').split(',')
|
|
|
|
if custom_subproj != ''
|
|
|
|
message ('Adding custom subproject ' + custom_subproj)
|
|
|
|
subproject(custom_subproj)
|
|
|
|
subprojects_names += [custom_subproj]
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
message('Building subprojects: ' + ', '.join(subprojects_names))
|
|
|
|
|
2016-08-24 15:10:21 +00:00
|
|
|
setenv = find_program('gst-uninstalled.py')
|
2017-04-05 22:25:31 +00:00
|
|
|
run_target('uninstalled', command : [setenv, '--builddir=@0@'.format(meson.build_root()),
|
2018-08-31 10:44:17 +00:00
|
|
|
'--srcdir=@0@'.format(meson.source_root())])
|
2016-11-07 21:17:39 +00:00
|
|
|
|
|
|
|
update = find_program('git-update')
|
|
|
|
run_target('git-update', command : [update])
|
|
|
|
run_target('update', command : [update,
|
|
|
|
'--builddir=@0@'.format(meson.current_build_dir())])
|