mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 15:36:35 +00:00
b6b2fa29fb
* gstreamer-sharp/plugins-base/DecodeBin.cs: Added a quick binding for decodebin to test new-decoded-pad; probably is only a temporary solution * sample/DecodeBinTranscoder.cs: Added a small decodebin sample * sample/Makefile.am: Added build rules for decodebin sample * gstreamer-sharp.mdp: Updated MonoDevelop project * gstreamer-sharp/Makefile.am: Added plugins-base/DecodeBin.cs git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@60931 e3ebcda4-bce8-0310-ba0a-eca2169e7518
21 lines
672 B
Makefile
21 lines
672 B
Makefile
TARGETS = playbin-player.exe decodebin-transcoder.exe
|
|
DEBUGS = $(addsuffix .mdb, $(TARGETS))
|
|
|
|
assemblies=$(top_builddir)/gstreamer-sharp/gstreamer-sharp.dll
|
|
references=$(addprefix /r:, $(assemblies))
|
|
|
|
playbin-player.exe: $(srcdir)/PlayBinPlayer.cs $(assemblies)
|
|
$(CSC) $(GLIBSHARP_LIBS) $(references) $(srcdir)/PlayBinPlayer.cs \
|
|
/out:playbin-player.exe
|
|
|
|
decodebin-transcoder.exe: $(srcdir)/DecodeBinTranscoder.cs $(assemblies)
|
|
$(CSC) -out:$@ $(GLIBSHARP_LIBS) $(references) $(srcdir)/DecodeBinTranscoder.cs
|
|
|
|
noinst_SCRIPTS = $(TARGETS)
|
|
|
|
CLEANFILES = $(TARGETS) $(DEBUGS)
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
EXTRA_DIST = \
|
|
PlayBinPlayer.cs \
|
|
DecodeBinTranscoder.cs
|