mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
42af2d66d8
https://github.com/mesonbuild/meson With contributions from: Tim-Philipp Müller <tim@centricular.com> Matej Knopp <matej.knopp@gmail.com> Jussi Pakkanen <jpakkane@gmail.com> (original port) Highlights of the features provided are: * Faster builds on Linux (~40-50% faster) * The ability to build with MSVC on Windows * Generate Visual Studio project files * Generate XCode project files * Much faster builds on Windows (on-par with Linux) * Seriously fast configure and building on embedded ... and many more. For more details see: http://blog.nirbheek.in/2016/05/gstreamer-and-meson-new-hope.html http://blog.nirbheek.in/2016/07/building-and-developing-gstreamer-using.html Building with Meson should work on both Linux and Windows, but may need a few more tweaks on other operating systems.
49 lines
1.3 KiB
Meson
49 lines
1.3 KiB
Meson
mpegts_sources = [
|
|
'gstmpegtssection.c',
|
|
'gstmpegtsdescriptor.c',
|
|
'gst-dvb-descriptor.c',
|
|
'gst-dvb-section.c',
|
|
'gst-atsc-section.c',
|
|
]
|
|
|
|
mpegts_headers = [
|
|
'gstmpegtssection.h',
|
|
'gst-atsc-section.h',
|
|
'gst-dvb-section.h',
|
|
'gst-scte-section.h',
|
|
'gstmpegtsdescriptor.h',
|
|
'gst-dvb-descriptor.h',
|
|
'mpegts.h',
|
|
]
|
|
install_headers(mpegts_headers, subdir : 'gstreamer-1.0/gst/mpegts')
|
|
|
|
mkenums = find_program('mpegts_enum.py')
|
|
|
|
mpegts_h = custom_target('mpegtsenum_h',
|
|
output : 'gstmpegts-enumtypes.h',
|
|
input : mpegts_headers,
|
|
install : true,
|
|
install_dir : 'include/gstreamer-1.0/gst/mpegts',
|
|
command : [mkenums, glib_mkenums, '@OUTPUT@', '@INPUT@'])
|
|
|
|
mpegts_c = custom_target('mpegtsenum_c',
|
|
output : 'gstmpegts-enumtypes.c',
|
|
input : mpegts_headers,
|
|
command : [mkenums, glib_mkenums, '@OUTPUT@', '@INPUT@'])
|
|
|
|
gstmpegts = library('gstmpegts-' + api_version,
|
|
mpegts_sources, mpegts_h, mpegts_c,
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
include_directories : [configinc, libsinc],
|
|
version : libversion,
|
|
soversion : soversion,
|
|
install : true,
|
|
dependencies : [gst_dep],
|
|
vs_module_defs: vs_module_defs_dir + 'libgstmpegts.def',
|
|
)
|
|
# TODO: generate gir
|
|
|
|
gstmpegts_dep = declare_dependency(link_with : gstmpegts,
|
|
include_directories : [libsinc],
|
|
dependencies : [gst_dep],
|
|
sources : [mpegts_h])
|