kumquat-buildroot/package/gstreamer1/gstreamer1-mm/Config.in
Adam Duskett f087d9f861 gstreamer1-mm: new package
Gstreamermm provides C++ bindings for gstreamer.

Signed-off-by: Adam Duskett <aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-12-14 16:37:56 +01:00

30 lines
1.2 KiB
Plaintext

config BR2_PACKAGE_GSTREAMER1_MM
bool "gstreamer1-mm"
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # glibmm
depends on BR2_INSTALL_LIBSTDCPP # glibmm
depends on BR2_USE_WCHAR # glibmm -> libglib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
depends on BR2_USE_MMU # glibmm -> libglib2
select BR2_PACKAGE_GLIBMM
select BR2_PACKAGE_GSTREAMER1_CHECK
select BR2_PACKAGE_GST1_PLUGINS_BASE
help
gstreamermm provides C++ bindings for the GStreamer streaming
multimedia library (http://gstreamer.freedesktop.org). With
gstreamermm it is possible to develop applications that work
with multimedia in C++.
gstreamermm is developed over glibmm, libsigc++ and libxml++
and the functionalities they provide. This means that, among
other things, referencing and unreferencing of GObjects is
handled automatically via glibmm's automatic pointer class,
Glib::RefPtr, and libsigc++'s slots are used for callbacks and
signals.
https://gstreamer.freedesktop.org/bindings/cplusplus.html
comment "gstreamer1-mm needs a toolchain w/ C++, wchar, threads, gcc >= 4.9"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_USE_WCHAR \
|| !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS