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
|
|
|
|
2019-05-31 21:43:46 +00:00
|
|
|
glib_req = '>= 2.44.0'
|
2016-08-24 15:10:21 +00:00
|
|
|
|
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
|
|
|
|
2019-06-25 15:25:36 +00:00
|
|
|
python3 = import('python').find_installation()
|
|
|
|
# Ensure that we're not being run from inside the gst-uninstalled env
|
|
|
|
# because that will confuse meson, and it might find the already-built
|
|
|
|
# gstreamer. It's fine if people run `ninja` as long as it doesn't run
|
|
|
|
# reconfigure because ninja doesn't care about the env.
|
|
|
|
ensure_not_uninstalled = '''
|
|
|
|
import os
|
|
|
|
assert('GST_ENV' not in os.environ)
|
|
|
|
'''
|
|
|
|
cmdres = run_command(python3, '-c', ensure_not_uninstalled)
|
|
|
|
if cmdres.returncode() != 0
|
|
|
|
error('Do not run `ninja` or `meson` for gst-build inside the uninstalled environment, you will run into problems')
|
|
|
|
endif
|
|
|
|
|
2018-10-28 14:06:35 +00:00
|
|
|
documented_projects = ''
|
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
|
2019-10-23 07:51:24 +00:00
|
|
|
|
|
|
|
# Change some warning which belong to level 3 (production quality) or
|
|
|
|
# 4 (informational) to level 1 (severe)
|
|
|
|
add_global_arguments (
|
|
|
|
'/w14062', # enumerator 'identifier' in switch of enum 'enumeration' is not handled
|
|
|
|
'/w14101', # 'identifier' : unreferenced local variable
|
|
|
|
'/w14189', # 'identifier' : local variable is initialized but not referenced
|
2019-10-23 07:54:43 +00:00
|
|
|
cc.get_supported_arguments(['/utf-8']), # set the input encoding to utf-8
|
2019-10-23 07:51:24 +00:00
|
|
|
language: 'c')
|
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 = [
|
2019-05-26 13:49:21 +00:00
|
|
|
['gstreamer', {'build-hotdoc': true, 'has-plugins': true}],
|
|
|
|
['gst-plugins-base', {'build-hotdoc': true, 'has-plugins': true}],
|
|
|
|
['gst-plugins-good', {'build-hotdoc': true, 'has-plugins': true}],
|
2019-04-05 13:27:37 +00:00
|
|
|
['libnice', { 'option': get_option('libnice'), 'match_gst_version': false}],
|
2019-05-26 13:49:21 +00:00
|
|
|
['gst-plugins-bad', { 'option': get_option('bad'), 'build-hotdoc': true, 'has-plugins': true}],
|
|
|
|
['gst-plugins-ugly', { 'option': get_option('ugly'), 'build-hotdoc': true, 'has-plugins': true}],
|
|
|
|
['gst-libav', { 'option': get_option('libav'), 'build-hotdoc': true, 'has-plugins': true}],
|
2018-10-28 14:06:35 +00:00
|
|
|
['gst-rtsp-server', { 'option': get_option('rtsp_server'), 'build-hotdoc': true }],
|
|
|
|
['gst-devtools', { 'option': get_option('devtools'), 'build-hotdoc': true }],
|
2019-03-13 22:08:59 +00:00
|
|
|
['gst-integration-testsuites', { 'option': get_option('devtools') }],
|
2019-05-26 13:49:21 +00:00
|
|
|
['gst-editing-services', { 'option': get_option('ges'), 'build-hotdoc': true, 'has-plugins': true}],
|
|
|
|
['gstreamer-vaapi', { 'option': get_option('vaapi'), 'build-hotdoc': true, 'has-plugins': true}],
|
|
|
|
['gst-omx', { 'option': get_option('omx'), 'build-hotdoc': true, 'has-plugins': true}],
|
2019-02-18 16:13:07 +00:00
|
|
|
['gstreamer-sharp', { 'option': get_option('sharp') }],
|
2019-04-05 13:27:37 +00:00
|
|
|
['pygobject', { 'option': get_option('python'), 'match_gst_version': false }],
|
2019-05-26 13:49:21 +00:00
|
|
|
['gst-python', { 'option': get_option('python'), 'has-plugins': true}],
|
2019-11-02 16:18:27 +00:00
|
|
|
['gst-examples', { 'option': get_option('gst-examples'), 'match_gst_versions': false}],
|
2019-02-18 16:13:07 +00:00
|
|
|
]
|
2017-08-22 19:29:58 +00:00
|
|
|
|
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-05-16 01:14:16 +00:00
|
|
|
pathsep = host_machine.system() == 'windows' ? ';' : ':'
|
|
|
|
|
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-05-16 13:26:47 +00:00
|
|
|
plugins_doc_caches = []
|
2019-05-16 01:14:16 +00:00
|
|
|
all_plugins = ''
|
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
|
|
|
|
|
2019-05-26 13:49:21 +00:00
|
|
|
if subproj.found()
|
|
|
|
# Replace by using subproject.get_variable('plugins', [])
|
|
|
|
# when https://github.com/mesonbuild/meson/pull/5426/files
|
|
|
|
# is merged and released
|
|
|
|
if build_infos.has_key('has-plugins', default: false)
|
|
|
|
plugins = subproj.get_variable('plugins')
|
|
|
|
else
|
|
|
|
plugins = []
|
2019-05-16 13:26:47 +00:00
|
|
|
endif
|
2019-05-26 13:49:21 +00:00
|
|
|
|
2019-05-16 13:26:47 +00:00
|
|
|
foreach plugin: plugins
|
2019-05-16 01:14:16 +00:00
|
|
|
all_plugins += pathsep + plugin.full_path()
|
2018-11-11 23:06:04 +00:00
|
|
|
endforeach
|
2018-10-28 14:06:35 +00:00
|
|
|
|
2018-10-20 22:04:25 +00:00
|
|
|
subprojects_names += [project_name]
|
|
|
|
cmdres = run_command(python3, '-c', symlink.format(project_name, meson.current_source_dir()))
|
|
|
|
if cmdres.returncode() == 0
|
2018-10-28 14:06:35 +00:00
|
|
|
message('Created symlink to ' + project_name)
|
2016-10-20 21:12:53 +00:00
|
|
|
endif
|
2019-05-26 13:49:21 +00:00
|
|
|
|
2019-06-04 19:30:43 +00:00
|
|
|
if not meson.is_cross_build() and build_infos.has_key('build-hotdoc', default: false)
|
2019-05-26 13:49:21 +00:00
|
|
|
if plugins.length() > 0
|
|
|
|
plugins_doc_caches += [subproj.get_variable('plugins_doc_dep')]
|
|
|
|
endif
|
|
|
|
if documented_projects != ''
|
|
|
|
documented_projects += ','
|
|
|
|
endif
|
|
|
|
documented_projects += project_name
|
|
|
|
endif
|
2018-10-20 22:04:25 +00:00
|
|
|
endif
|
2016-08-24 15:10:21 +00:00
|
|
|
endforeach
|
|
|
|
|
2019-05-16 13:26:47 +00:00
|
|
|
plugins_doc_dep = custom_target('plugins-doc-cache',
|
|
|
|
command: [python3, '-c', 'print("Built all doc caches")'],
|
|
|
|
input: plugins_doc_caches,
|
|
|
|
output: 'plugins_doc_caches',
|
|
|
|
capture: true,
|
|
|
|
)
|
|
|
|
|
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
|
|
|
|
|
2018-11-12 23:23:14 +00:00
|
|
|
if meson.is_cross_build() or build_machine.system() == 'windows'
|
|
|
|
if get_option('doc').enabled()
|
|
|
|
error('Documentation enabled but building the doc while cross building or building on windows is not supported yet.')
|
|
|
|
endif
|
|
|
|
|
2019-05-14 22:21:54 +00:00
|
|
|
message('Documentation not built as building the documentation while cross building or building on windows is not supported yet.')
|
2018-10-28 14:06:35 +00:00
|
|
|
else
|
|
|
|
hotdoc_p = find_program('hotdoc', required : get_option('doc'))
|
|
|
|
if hotdoc_p.found()
|
|
|
|
if documented_projects != ''
|
|
|
|
subproject('gst-docs', default_options: 'built_subprojects=' + documented_projects)
|
|
|
|
message('Gst docs subprojects: ' + documented_projects)
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
message('Not building documentation as hotdoc was not found')
|
|
|
|
endif
|
|
|
|
endif
|
2018-07-12 14:14:33 +00:00
|
|
|
|
2018-11-11 23:06:04 +00:00
|
|
|
cmdres = run_command(python3, find_program('scripts/generate_plugins_path.py'), '--builddir',
|
|
|
|
meson.build_root(), all_plugins)
|
|
|
|
assert(cmdres.returncode() == 0, 'Could not create plugins path: @0@'.format(cmdres.stderr()))
|
|
|
|
|
2018-10-28 14:06:35 +00:00
|
|
|
message('Building subprojects: ' + ', '.join(subprojects_names))
|
2019-08-03 02:19:04 +00:00
|
|
|
setenv = find_program('gst-env.py')
|
|
|
|
|
|
|
|
devenv_cmd = [setenv, '--builddir=@0@'.format(meson.build_root()),
|
|
|
|
'--srcdir=@0@'.format(meson.source_root())]
|
|
|
|
|
2019-08-03 02:22:16 +00:00
|
|
|
if meson.has_exe_wrapper() and build_machine.system() == 'linux' and host_machine.system() == 'windows'
|
|
|
|
# FIXME: Ideally we could get the wrapper directly from meson
|
|
|
|
devenv_cmd += ['--wine', host_machine.cpu_family() == 'x86_64' ? 'wine64' : 'wine32']
|
|
|
|
sysroot = meson.get_cross_property('sys_root')
|
|
|
|
if sysroot != ''
|
|
|
|
# Logic from meson
|
|
|
|
devenv_cmd += ['--winepath', 'Z:' + join_paths(sysroot, 'bin')]
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2019-08-03 02:19:04 +00:00
|
|
|
run_target('uninstalled', command : devenv_cmd)
|
|
|
|
run_target('devenv', command : devenv_cmd)
|
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())])
|