summaryrefslogtreecommitdiff
path: root/meson_options.txt
AgeCommit message (Collapse)AuthorFilesLines
2018-09-21Update sctp plugin for the current build systemMatthew Waters1-0/+1
- Add meson build definitions - Add necessary API decorators
2018-09-19meson: add glib-checks option to disable API guards and suchTim-Philipp Müller1-0/+2
We want this enabled by default, also in releases, but people may want to disable this for performance-critical workloads or on embedded devices.
2018-09-19meson: fix missing closing bracket in option descriptionsTim-Philipp Müller1-2/+2
2018-08-29meson: Add build files for androidmedia and openslesNirbheek Chauhan1-0/+2
Note that androidmedia requires Android gstgl
2018-08-19meson: build musepack pluginTim-Philipp Müller1-0/+1
2018-08-19meson: build neonhttpsrcTim-Philipp Müller1-1/+2
2018-08-18meson: add options to disable gobject cast checks and glib assertsTim-Philipp Müller1-0/+4
... and define G_DISABLE_DEPRECATED for development versions, like we do in autotools.
2018-08-17meson: Add an option for testsNirbheek Chauhan1-0/+1
This is needed because we don't always have gstreamer-check available, for instance inside Cerbero on iOS.
2018-08-14meson: Add an option for the applemedia pluginNirbheek Chauhan1-0/+1
2018-08-01meson: Add option for winks pluginNirbheek Chauhan1-0/+1
This was accidentally missed.
2018-07-27Add feature options for almost all pluginsNirbheek Chauhan1-0/+72
The only plugins remaining are those that haven't been ported to Meson yet, and msdk. Also, the tests are still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
2018-07-27meson: Add feature options for many pluginsNirbheek Chauhan1-5/+70
The rest will be converted later, these are necessary for gst-build to set options correctly. https://bugzilla.gnome.org/show_bug.cgi?id=795107
2018-05-21meson: add 'nls' option to disable translationsTim-Philipp Müller1-0/+2
And enable by default. Was implicitly disabled because ENABLE_NLS was not defined.
2018-05-05meson: Update option names to omit disable_ and with- prefixesNirbheek Chauhan1-8/+9
Also yield common options to the outer project (gst-build in our case) so that they don't have to be set manually.
2017-12-19gl: remove GStreamer OpenGL integration library and move to -baseTim-Philipp Müller1-6/+0
https://bugzilla.gnome.org/show_bug.cgi?id=754094
2017-12-08meson test: Enable libs testsMathieu Duponchelle1-0/+2
https://bugzilla.gnome.org/show_bug.cgi?id=789064
2017-05-20meson: add options to set package name and originTim-Philipp Müller1-0/+4
https://bugzilla.gnome.org/show_bug.cgi?id=782172
2017-01-23meson: Build GIR filesThibault Saunier1-0/+3
2016-10-19meson: gl: add support for building with dispmanx on the rpiMatthew Waters1-0/+3
2016-09-09meson: add some starting build files for GLMatthew Waters1-0/+3
Currently only works on linux with egl/glx + wayland/x11 but the general principals have been layed out for adding the other GL platforms/winsys'.
2016-08-20Add support for Meson as alternative/parallel build systemNirbheek Chauhan1-0/+1
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.