mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
5c4f4ac1bd
https://github.com/mesonbuild/meson With contributions from: Tim-Philipp Müller <tim@centricular.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.
69 lines
2 KiB
Meson
69 lines
2 KiB
Meson
pbutils_sources = [
|
|
'gstpluginsbaseversion.c',
|
|
'pbutils.c',
|
|
'codec-utils.c',
|
|
'descriptions.c',
|
|
'encoding-profile.c',
|
|
'encoding-target.c',
|
|
'install-plugins.c',
|
|
'missing-plugins.c',
|
|
'gstaudiovisualizer.c',
|
|
'gstdiscoverer.c',
|
|
'gstdiscoverer-types.c'
|
|
]
|
|
|
|
pbconf = configuration_data()
|
|
pbconf.set('PACKAGE_VERSION_MAJOR', gst_version_major)
|
|
pbconf.set('PACKAGE_VERSION_MINOR', gst_version_minor)
|
|
pbconf.set('PACKAGE_VERSION_MICRO', gst_version_micro)
|
|
pbconf.set('PACKAGE_VERSION_NANO', gst_version_nano)
|
|
configure_file(input : 'gstpluginsbaseversion.h.in',
|
|
output: 'gstpluginsbaseversion.h',
|
|
install_dir : 'include/gstreamer-1.0/gst/pbutils/',
|
|
configuration: pbconf)
|
|
|
|
pbutils_headers = [
|
|
'pbutils.h',
|
|
'codec-utils.h',
|
|
'descriptions.h',
|
|
'encoding-profile.h',
|
|
'encoding-target.h',
|
|
'install-plugins.h',
|
|
'missing-plugins.h',
|
|
'gstdiscoverer.h',
|
|
'gstaudiovisualizer.h',
|
|
]
|
|
install_headers(pbutils_headers, subdir : 'gstreamer-1.0/gst/pbutils/')
|
|
|
|
pbutils_mkenum_headers = pbutils_headers
|
|
|
|
mkenums = find_program('pbutils_mkenum.py')
|
|
gstpbutils_h = custom_target('gstpbutilsenum_h',
|
|
output : 'pbutils-enumtypes.h',
|
|
input : pbutils_mkenum_headers,
|
|
install : true,
|
|
install_dir : 'include/gstreamer-1.0/gst/pbutils/',
|
|
command : [mkenums, glib_mkenums, '@OUTPUT@', '@INPUT@'])
|
|
|
|
gstpbutils_c = custom_target('gstpbutilsenum_c',
|
|
output : 'pbutils-enumtypes.c',
|
|
input : pbutils_mkenum_headers,
|
|
depends : [gstaudio_h, gstvideo_h, gstpbutils_h],
|
|
command : [mkenums, glib_mkenums, '@OUTPUT@', '@INPUT@'])
|
|
|
|
pbutils = library('gstpbutils-@0@'.format(api_version),
|
|
pbutils_sources, gstpbutils_c, gstpbutils_h,
|
|
c_args : gst_plugins_base_args,
|
|
include_directories: [configinc, libsinc],
|
|
version : libversion,
|
|
soversion : soversion,
|
|
install : true,
|
|
dependencies : [video_dep, audio_dep, tag_dep],
|
|
vs_module_defs: vs_module_defs_dir + 'libgstpbutils.def',
|
|
)
|
|
# TODO: generate gir
|
|
|
|
pbutils_dep = declare_dependency(link_with : pbutils,
|
|
include_directories : [libsinc],
|
|
dependencies : [video_dep, audio_dep, tag_dep],
|
|
sources : [gstpbutils_h])
|