mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
85e49c19d4
This subproject will download and provide win32 binaries for flex and/or bison if they aren't found at configure time on Windows.
161 lines
4.7 KiB
Meson
161 lines
4.7 KiB
Meson
project('All GStreamer modules', 'c',
|
|
version : '1.15.0.1',
|
|
meson_version : '>= 0.46.0',
|
|
default_options : ['buildtype=debugoptimized'])
|
|
|
|
gst_version = '>= @0@'.format(meson.project_version())
|
|
gst_branch = 'master'
|
|
|
|
glib_req = '>= 2.40.0'
|
|
|
|
subprojects = [
|
|
'gstreamer',
|
|
'gst-plugins-base',
|
|
'gst-plugins-good',
|
|
]
|
|
|
|
build_system = build_machine.system()
|
|
cc = meson.get_compiler('c')
|
|
|
|
# Make it possible to use msys2 built zlib which fails
|
|
# when not using the mingw toolchain as it uses unistd.h
|
|
if not meson.is_subproject() and cc.get_id() == 'msvc'
|
|
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
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
# FIXME Remove that check once we have ffmpeg as a gst-libav subproject
|
|
libavfilter_dep = dependency('libavfilter', version: '>= 6.47.100', required: false)
|
|
gst_libav = []
|
|
if libavfilter_dep.found()
|
|
cc = meson.get_compiler('c')
|
|
check_ffmpeg_src = '''#include <libavcodec/avcodec.h>
|
|
#if LIBAVCODEC_VERSION_MICRO >= 100
|
|
/* FFmpeg uses 100+ as its micro version */
|
|
#else
|
|
#error libav provider should be FFmpeg
|
|
#endif'''
|
|
if cc.compiles(check_ffmpeg_src, dependencies : libavfilter_dep, name : 'whether libav is provided by FFmpeg')
|
|
gst_libav = ['gst-libav']
|
|
endif
|
|
endif
|
|
|
|
if gst_libav.length() == 0
|
|
message('WARNING: gst-libav not built as ffmpeg >= n3.1.2 not found on the system')
|
|
endif
|
|
|
|
if get_option('python')
|
|
subprojects += ['gst-python']
|
|
endif
|
|
|
|
if get_option('bad')
|
|
subprojects += ['gst-plugins-bad']
|
|
endif
|
|
|
|
if get_option('ugly')
|
|
subprojects += ['gst-plugins-ugly']
|
|
endif
|
|
|
|
if get_option('libav')
|
|
subprojects += gst_libav
|
|
endif
|
|
|
|
if get_option('omx')
|
|
subprojects += ['gst-omx']
|
|
endif
|
|
|
|
if get_option('vaapi')
|
|
if dependency('libva', version: ['>= 0.30.4', '!= 0.99.0'], required : false).found()
|
|
subprojects += ['gstreamer-vaapi']
|
|
else
|
|
message('WARNING: not building gstreamer-vaapi module, missing libva')
|
|
endif
|
|
endif
|
|
|
|
if get_option('devtools')
|
|
if dependency('json-glib-1.0', required : false).found()
|
|
subprojects += ['gst-devtools']
|
|
else
|
|
message('WARNING: not building gst-devtools module, missing glib-json-1.0')
|
|
endif
|
|
endif
|
|
|
|
if get_option('ges')
|
|
if dependency('libxml-2.0', required : false).found()
|
|
subprojects += ['gst-editing-services']
|
|
else
|
|
message('WARNING: not building gst-editing-services module, missing libxml-2.0')
|
|
endif
|
|
endif
|
|
|
|
if get_option('rtsp_server')
|
|
subprojects += ['gst-rtsp-server']
|
|
endif
|
|
|
|
if get_option('sharp')
|
|
if add_languages('cs', required : false)
|
|
if meson.version().version_compare('>=0.43')
|
|
subprojects += ['gstreamer-sharp']
|
|
else
|
|
message('WARNING: Not building gstreamer-sharp as meson >=0.43 not found.')
|
|
endif
|
|
else
|
|
message('WARNING: Not building gstreamer-sharp as no CS compiler found.')
|
|
endif
|
|
endif
|
|
|
|
python3 = import('python3').find_python()
|
|
symlink = '''
|
|
import os
|
|
|
|
os.symlink(os.path.join('@1@', 'subprojects', '@0@'),
|
|
os.path.join('@1@', '@0@'))
|
|
'''
|
|
|
|
foreach custom_subproj: get_option('custom_subprojects').split(',')
|
|
if custom_subproj != ''
|
|
message ('Adding custom subproject ' + custom_subproj)
|
|
subprojects += [custom_subproj]
|
|
endif
|
|
endforeach
|
|
|
|
# On Windows, if flex/bison aren't found, we use a subproject to get them
|
|
flex = find_program('flex', 'win_flex', required : build_system != 'windows')
|
|
bison = find_program('bison', 'win_bison', required : build_system != 'windows')
|
|
if not flex.found() or not bison.found()
|
|
subproject('win-flex-bison-binaries')
|
|
endif
|
|
|
|
message('Building subprojects: ' + ', '.join(subprojects))
|
|
foreach subproj: subprojects
|
|
subproject(subproj, version: gst_version)
|
|
|
|
cmdres = run_command(python3, '-c', symlink.format(subproj, meson.current_source_dir()))
|
|
if cmdres.returncode() == 0
|
|
message('Created symlink to ' + subproj)
|
|
else
|
|
message('Could not create symlink to @0@'.format(subproj))
|
|
endif
|
|
endforeach
|
|
|
|
setenv = find_program('gst-uninstalled.py')
|
|
run_target('uninstalled', command : [setenv, '--builddir=@0@'.format(meson.build_root()),
|
|
'--srcdir=@0@'.format(meson.source_root()),
|
|
'--gst-version=@0@'.format(gst_branch)])
|
|
|
|
update = find_program('git-update')
|
|
run_target('git-update', command : [update])
|
|
run_target('update', command : [update,
|
|
'--builddir=@0@'.format(meson.current_build_dir())])
|