From b48aa754545b4fd10b7670c4a24f7bcacd2b6831 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Moutte?= Date: Sat, 29 Sep 2007 11:46:31 +0000 Subject: [PATCH] gst/gstinfo.h: Add an explicit variable importation needed on VS6 (only for MSC_VER) Original commit message from CVS: * gst/gstinfo.h: Add an explicit variable importation needed on VS6 (only for MSC_VER) Define M_PI which is used in files which are including gstinfo.h. VS6 includes doesn't define it. * win32/common/libgstbase.def: * win32/common/libgstcontroller.def: * win32/common/libgstreamer.def: Add new exported functions and variables. * win32/vs6/libgstcontroller.dsp: * win32/vs6/libgstreamer.dsp: Update the list of files to build. --- ChangeLog | 14 + gst/gstinfo.h | 16 +- win32/common/libgstbase.def | 4 + win32/common/libgstcontroller.def | 3 + win32/common/libgstreamer.def | 6 + win32/vs6/libgstcontroller.dsp | 12 + win32/vs6/libgstreamer.dsp | 1098 +++++++++++++++-------------- 7 files changed, 605 insertions(+), 548 deletions(-) diff --git a/ChangeLog b/ChangeLog index e2b3557b2e..886c0fa26a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2007-09-29 Sebastien Moutte + + * gst/gstinfo.h: + Add an explicit variable importation needed on VS6 (only for MSC_VER) + Define M_PI which is used in files which are including gstinfo.h. + VS6 includes doesn't define it. + * win32/common/libgstbase.def: + * win32/common/libgstcontroller.def: + * win32/common/libgstreamer.def: + Add new exported functions and variables. + * win32/vs6/libgstcontroller.dsp: + * win32/vs6/libgstreamer.dsp: + Update the list of files to build. + 2007-09-28 Wim Taymans Patch by: Felipe Contreras diff --git a/gst/gstinfo.h b/gst/gstinfo.h index 4cf55f95a4..0c6461e522 100644 --- a/gst/gstinfo.h +++ b/gst/gstinfo.h @@ -28,6 +28,20 @@ #include #include +#ifndef _MSC_VER +#define IMPORT_SYMBOL +#else /* _MSC_VER */ +#ifndef LIBGSTREAMER_EXPORTS +#define IMPORT_SYMBOL __declspec(dllimport) +#else +#define IMPORT_SYMBOL +#endif +#endif + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + G_BEGIN_DECLS /** @@ -408,7 +422,7 @@ extern gboolean __gst_debug_enabled; /* since 0.10.7, the min debug level, used for quickly discarding debug * messages that fall under the threshold. */ -extern GstDebugLevel __gst_debug_min; +extern IMPORT_SYMBOL GstDebugLevel __gst_debug_min; /** * GST_CAT_LEVEL_LOG: diff --git a/win32/common/libgstbase.def b/win32/common/libgstbase.def index a2c55e98ca..ec4c07f981 100644 --- a/win32/common/libgstbase.def +++ b/win32/common/libgstbase.def @@ -22,6 +22,7 @@ EXPORTS gst_base_sink_wait_preroll gst_base_src_get_type gst_base_src_is_live + gst_base_src_set_do_timestamp gst_base_src_set_format gst_base_src_set_live gst_base_src_wait_playing @@ -34,7 +35,10 @@ EXPORTS gst_base_transform_set_qos_enabled gst_base_transform_update_qos gst_data_queue_flush + gst_data_queue_get_level gst_data_queue_is_empty + gst_data_queue_is_full + gst_data_queue_limits_changed gst_data_queue_new gst_data_queue_pop gst_data_queue_push diff --git a/win32/common/libgstcontroller.def b/win32/common/libgstcontroller.def index 3a5f0f1d0e..14f0f7b366 100644 --- a/win32/common/libgstcontroller.def +++ b/win32/common/libgstcontroller.def @@ -17,6 +17,9 @@ EXPORTS gst_controller_sync_values gst_controller_unset gst_controller_unset_all + gst_lfo_control_source_get_type + gst_lfo_control_source_new + gst_lfo_waveform_get_type gst_object_control_properties gst_object_get_controller gst_object_get_control_rate diff --git a/win32/common/libgstreamer.def b/win32/common/libgstreamer.def index 56d09dd8b2..cad739b31b 100644 --- a/win32/common/libgstreamer.def +++ b/win32/common/libgstreamer.def @@ -1,4 +1,5 @@ EXPORTS + __gst_debug_min DATA _gst_debug_category_new _gst_debug_nameof_funcptr _gst_debug_register_funcptr @@ -89,6 +90,7 @@ EXPORTS gst_caps_ref gst_caps_replace gst_caps_set_simple + gst_caps_set_simple_valist gst_caps_subtract gst_caps_to_string gst_caps_truncate @@ -166,6 +168,7 @@ EXPORTS gst_element_class_get_pad_template gst_element_class_get_pad_template_list gst_element_class_set_details + gst_element_class_set_details_simple gst_element_continue_state gst_element_create_all_pads gst_element_default_error @@ -183,6 +186,7 @@ EXPORTS gst_element_factory_get_type gst_element_factory_get_uri_protocols gst_element_factory_get_uri_type + gst_element_factory_has_interface gst_element_factory_make gst_element_flags_get_type gst_element_found_tags @@ -629,6 +633,7 @@ EXPORTS gst_structure_get_name gst_structure_get_string gst_structure_get_type + gst_structure_get_uint gst_structure_get_value gst_structure_has_field gst_structure_has_field_typed @@ -707,6 +712,7 @@ EXPORTS gst_type_find_probability_get_type gst_type_find_register gst_type_find_suggest + gst_type_register_static_full gst_update_registry gst_uri_construct gst_uri_get_location diff --git a/win32/vs6/libgstcontroller.dsp b/win32/vs6/libgstcontroller.dsp index 6893fcd273..59d2a12dd8 100644 --- a/win32/vs6/libgstcontroller.dsp +++ b/win32/vs6/libgstcontroller.dsp @@ -112,6 +112,10 @@ SOURCE=..\..\libs\gst\controller\gstcontroller.h # End Source File # Begin Source File +SOURCE=..\..\libs\gst\controller\gstcontrolsource.c +# End Source File +# Begin Source File + SOURCE=..\..\libs\gst\controller\gsthelper.c # End Source File # Begin Source File @@ -120,6 +124,14 @@ SOURCE=..\..\libs\gst\controller\gstinterpolation.c # End Source File # Begin Source File +SOURCE=..\..\libs\gst\controller\gstinterpolationcontrolsource.c +# End Source File +# Begin Source File + +SOURCE=..\..\libs\gst\controller\gstlfocontrolsource.c +# End Source File +# Begin Source File + SOURCE=..\..\libs\gst\controller\lib.c # End Source File # Begin Source File diff --git a/win32/vs6/libgstreamer.dsp b/win32/vs6/libgstreamer.dsp index 9db0585b32..0191a9e9da 100644 --- a/win32/vs6/libgstreamer.dsp +++ b/win32/vs6/libgstreamer.dsp @@ -1,547 +1,551 @@ -# Microsoft Developer Studio Project File - Name="libgstreamer" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=libgstreamer - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "libgstreamer.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "libgstreamer.mak" CFG="libgstreamer - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libgstreamer - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "libgstreamer - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "libgstreamer - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /O2 /I "." /I "../.." /I "../common" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /D "HAVE_CONFIG_H" /D "HAVE_WIN32" /FD /c -# SUBTRACT CPP /YX /Yc /Yu -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x40c /d "NDEBUG" -# ADD RSC /l 0x40c /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib libxml2.lib /nologo /dll /machine:I386 /out:"Release/libgstreamer-0.10.dll" -# Begin Special Build Tool -TargetPath=.\Release\libgstreamer-0.10.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=mkdir c:\gstreamer mkdir c:\gstreamer\bin copy /Y $(TargetPath) c:\gstreamer\bin -# End Special Build Tool - -!ELSEIF "$(CFG)" == "libgstreamer - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /I "." /I "../.." /I "../common" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /D "HAVE_CONFIG_H" /D "HAVE_WIN32" /FR /FD /GZ /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x40c /d "_DEBUG" -# ADD RSC /l 0x40c /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib libxml2D.lib /nologo /dll /debug /machine:I386 /out:"Debug/libgstreamer-0.10.dll" /pdbtype:sept -# Begin Special Build Tool -TargetPath=.\Debug\libgstreamer-0.10.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=mkdir c:\gstreamer\debug mkdir c:\gstreamer\debug\bin copy /Y $(TargetPath) c:\gstreamer\debug\bin -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "libgstreamer - Win32 Release" -# Name "libgstreamer - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\common\dirent.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\parse\grammar.tab.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gst.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbin.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbuffer.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbus.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstcaps.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstchildproxy.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstclock.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstelement.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstelementfactory.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstenumtypes.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsterror.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstevent.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstfilter.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstformat.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstghostpad.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstindex.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstindexfactory.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstinfo.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstinterface.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstiterator.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmarshal.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmessage.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstminiobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpad.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpadtemplate.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstparse.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpipeline.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstplugin.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpluginfeature.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstquark.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstquery.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstregistry.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstregistryxml.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstsegment.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gststructure.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstsystemclock.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttaglist.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttagsetter.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttask.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttrace.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttypefind.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttypefindfactory.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsturi.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstutils.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstvalue.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstxml.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\parse\lex._gst_parse_yy.c -# End Source File -# Begin Source File - -SOURCE=..\common\libgstreamer.def -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\gst\gettext.h -# End Source File -# Begin Source File - -SOURCE="..\..\gst\glib-compat.h" -# End Source File -# Begin Source File - -SOURCE="..\..\gst\gst-i18n-app.h" -# End Source File -# Begin Source File - -SOURCE="..\..\gst\gst-i18n-lib.h" -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gst.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gst_private.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbin.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbuffer.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbus.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstcaps.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstchildproxy.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstclock.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstcompat.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstconfig.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstconfig.h.in -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstelement.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstelementfactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstenumtypes.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsterror.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstevent.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstfilter.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstformat.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstghostpad.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstindex.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstindexfactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstinfo.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstinterface.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstiterator.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmacros.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmarshal.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmemchunk.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmessage.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstminiobject.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstobject.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpad.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpadtemplate.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstparse.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpipeline.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstplugin.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpluginfeature.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstquery.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstregistry.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstsegment.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gststructure.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstsystemclock.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttaglist.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttagsetter.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttask.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttrace.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttrashstack.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttypefind.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttypefindfactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsturi.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstutils.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstvalue.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstversion.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstxml.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="libgstreamer" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=libgstreamer - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "libgstreamer.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "libgstreamer.mak" CFG="libgstreamer - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "libgstreamer - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "libgstreamer - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "libgstreamer - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /O2 /I "." /I "../.." /I "../common" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /D "HAVE_CONFIG_H" /D "HAVE_WIN32" /FD /c +# SUBTRACT CPP /YX /Yc /Yu +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x40c /d "NDEBUG" +# ADD RSC /l 0x40c /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 +# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib libxml2.lib /nologo /dll /machine:I386 /out:"Release/libgstreamer-0.10.dll" +# Begin Special Build Tool +TargetPath=.\Release\libgstreamer-0.10.dll +SOURCE="$(InputPath)" +PostBuild_Cmds=mkdir c:\gstreamer mkdir c:\gstreamer\bin copy /Y $(TargetPath) c:\gstreamer\bin +# End Special Build Tool + +!ELSEIF "$(CFG)" == "libgstreamer - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /I "." /I "../.." /I "../common" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /D "HAVE_CONFIG_H" /D "HAVE_WIN32" /FR /FD /GZ /c +# SUBTRACT CPP /YX +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x40c /d "_DEBUG" +# ADD RSC /l 0x40c /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib libxml2D.lib /nologo /dll /debug /machine:I386 /out:"Debug/libgstreamer-0.10.dll" /pdbtype:sept +# Begin Special Build Tool +TargetPath=.\Debug\libgstreamer-0.10.dll +SOURCE="$(InputPath)" +PostBuild_Cmds=mkdir c:\gstreamer\debug mkdir c:\gstreamer\debug\bin copy /Y $(TargetPath) c:\gstreamer\debug\bin +# End Special Build Tool + +!ENDIF + +# Begin Target + +# Name "libgstreamer - Win32 Release" +# Name "libgstreamer - Win32 Debug" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=..\common\dirent.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\parse\grammar.tab.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gst.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstbin.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstbuffer.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstbus.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstcaps.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstchildproxy.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstclock.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstelement.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstelementfactory.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstenumtypes.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsterror.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstevent.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstfilter.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstformat.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstghostpad.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstindex.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstindexfactory.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstinfo.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstinterface.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstiterator.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstmarshal.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstmessage.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstminiobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstpad.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstpadtemplate.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstparamspecs.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstparse.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstpipeline.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstplugin.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstpluginfeature.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstquark.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstquery.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstregistry.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstregistryxml.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstsegment.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gststructure.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstsystemclock.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttaglist.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttagsetter.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttask.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttrace.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttypefind.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttypefindfactory.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsturi.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstutils.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstvalue.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstxml.c +# End Source File +# Begin Source File + +SOURCE=..\..\gst\parse\lex._gst_parse_yy.c +# End Source File +# Begin Source File + +SOURCE=..\common\libgstreamer.def +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=..\..\gst\gettext.h +# End Source File +# Begin Source File + +SOURCE="..\..\gst\glib-compat.h" +# End Source File +# Begin Source File + +SOURCE="..\..\gst\gst-i18n-app.h" +# End Source File +# Begin Source File + +SOURCE="..\..\gst\gst-i18n-lib.h" +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gst.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gst_private.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstbin.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstbuffer.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstbus.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstcaps.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstchildproxy.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstclock.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstcompat.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstconfig.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstconfig.h.in +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstelement.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstelementfactory.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstenumtypes.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsterror.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstevent.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstfilter.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstformat.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstghostpad.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstindex.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstindexfactory.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstinfo.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstinterface.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstiterator.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstmacros.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstmarshal.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstmemchunk.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstmessage.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstminiobject.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstobject.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstpad.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstpadtemplate.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstparse.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstpipeline.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstplugin.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstpluginfeature.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstquery.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstregistry.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstsegment.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gststructure.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstsystemclock.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttaglist.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttagsetter.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttask.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttrace.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttrashstack.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttypefind.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsttypefindfactory.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gsturi.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstutils.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstvalue.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstversion.h +# End Source File +# Begin Source File + +SOURCE=..\..\gst\gstxml.h +# End Source File +# End Group +# Begin Group "Resource Files" + +# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" +# End Group +# End Target +# End Project