02234a267e
* NEW: Support for properties that are enumerations. Use them like string properties that can only take some specific values. * NEW: GStreamer element not created explicitely are now managed through the MediaControl class. * NEW: MediaFilter is a new MediaControl that implements the 'capsfilter' element. It has a Filter property that understands the same syntax as the 'gst-launch' GStreamer tool. * NEW: MediaContaienr.Children is a new virtual property that allows to enumerate its children elements. git-svn-id: svn://localhost/gambas/trunk@5717 867c0c6c-44f3-4631-809d-bfa615b0a4ec
14 lines
313 B
Makefile
14 lines
313 B
Makefile
COMPONENT = gb.media
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.media.la
|
|
|
|
gb_media_la_LIBADD = @MEDIA_LIB@
|
|
gb_media_la_LDFLAGS = -module @LD_FLAGS@ @MEDIA_LDFLAGS@
|
|
gb_media_la_CPPFLAGS = @MEDIA_INC@
|
|
|
|
gb_media_la_SOURCES = \
|
|
main.c main.h \
|
|
c_media.c c_media.h \
|
|
c_mediaplayer.c c_mediaplayer.h
|