mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
win32/vs6/grammar.dsp: add autogen of gstmarshal.c,h for Release mode
Original commit message from CVS: * win32/vs6/grammar.dsp: add autogen of gstmarshal.c,h for Release mode
This commit is contained in:
parent
0cab8b4fbc
commit
c0a0e6303e
2 changed files with 24 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-01-30 Sebastien Moutte <sebastien@moutte.net>
|
||||
|
||||
* win32/vs6/grammar.dsp:
|
||||
add autogen of gstmarshal.c,h for Release mode
|
||||
|
||||
2006-01-30 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* libs/gst/base/gstbasesink.c: (gst_base_sink_init),
|
||||
|
|
|
@ -182,6 +182,25 @@ BuildCmds= \
|
|||
SOURCE=..\..\gst\gstmarshal.list
|
||||
|
||||
!IF "$(CFG)" == "grammar - Win32 Release"
|
||||
# Begin Custom Build
|
||||
InputPath=..\..\gst\gstmarshal.list
|
||||
|
||||
BuildCmds= \
|
||||
echo #include "glib-object.h" > gstmarshal.c.tmp \
|
||||
echo #include "gstmarshal.h" >> gstmarshal.c.tmp \
|
||||
glib-genmarshal --body --prefix=gst_marshal ..\..\gst\gstmarshal.list >> gstmarshal.c.tmp \
|
||||
move gstmarshal.c.tmp ..\..\gst\gstmarshal.c \
|
||||
echo #include "gst/gstconfig.h" > gstmarshal.h.tmp \
|
||||
glib-genmarshal --header --prefix=gst_marshal ..\..\gst\gstmarshal.list >> gstmarshal.h.tmp \
|
||||
move gstmarshal.h.tmp ..\..\gst\gstmarshal.h \
|
||||
|
||||
|
||||
"..\..\gst\gstmarshal.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
|
||||
$(BuildCmds)
|
||||
|
||||
"..\..\gst\gstmarshal.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
|
||||
$(BuildCmds)
|
||||
# End Custom Build
|
||||
|
||||
!ELSEIF "$(CFG)" == "grammar - Win32 Debug"
|
||||
|
||||
|
|
Loading…
Reference in a new issue