From: Erik de Castro Lopo Date: Wed, 2 Jan 2013 11:48:59 +0000 (+1100) Subject: Fix VC project files to use /objs/ directory instead of /obj/ directory. X-Git-Tag: 1.3.0pre1~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f67928dec4652f6cb8ebe50796f09cb76607fd3d;p=platform%2Fupstream%2Fflac.git Fix VC project files to use /objs/ directory instead of /obj/ directory. --- diff --git a/README b/README index d047bba..df28e75 100644 --- a/README +++ b/README @@ -228,9 +228,9 @@ From the dropdown in the toolbar, select "Release" instead of "Debug", then hit F7 to build. Either way, this will build all libraries both statically (e.g. -obj\release\lib\libFLAC_static.lib) and as DLLs (e.g. -obj\release\lib\libFLAC.dll), and it will build all binaries, statically -linked (e.g. obj\release\bin\flac.exe). +objs\release\lib\libFLAC_static.lib) and as DLLs (e.g. +objs\release\lib\libFLAC.dll), and it will build all binaries, statically +linked (e.g. objs\release\bin\flac.exe). Everything will end up in the "obj" directory. DLLs and .exe files are all that are needed and can be copied to an installation area and @@ -241,7 +241,7 @@ By default the code is configured with Ogg support. Before building FLAC you will need to get the Ogg source distribution (see http://xiph.org/ogg/vorbis/download/), build ogg_static.lib (load and build win32\ogg_static.dsp), copy ogg_static.lib into FLAC's -'obj\release\lib' directory, and copy the entire include\ogg tree into +'objs\release\lib' directory, and copy the entire include\ogg tree into FLAC's 'include' directory (so that there is an 'ogg' directory in FLAC's 'include' directory with the files ogg.h, os_types.h and config_types.h). diff --git a/all.dsp b/all.dsp index 9fc561c..abe7872 100644 --- a/all.dsp +++ b/all.dsp @@ -36,8 +36,8 @@ MTL=midl.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "obj\release" -# PROP Intermediate_Dir "obj\release" +# PROP Output_Dir "objs\release" +# PROP Intermediate_Dir "objs\release" # PROP Target_Dir "" !ELSEIF "$(CFG)" == "all - Win32 Debug" @@ -49,8 +49,8 @@ MTL=midl.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 -# PROP Output_Dir "obj\debug" -# PROP Intermediate_Dir "obj\debug" +# PROP Output_Dir "objs\debug" +# PROP Intermediate_Dir "objs\debug" # PROP Target_Dir "" !ENDIF diff --git a/all_dynamic.dsp b/all_dynamic.dsp index 4368bbf..719dc27 100644 --- a/all_dynamic.dsp +++ b/all_dynamic.dsp @@ -36,8 +36,8 @@ MTL=midl.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "obj\release" -# PROP Intermediate_Dir "obj\release" +# PROP Output_Dir "objs\release" +# PROP Intermediate_Dir "objs\release" # PROP Target_Dir "" !ELSEIF "$(CFG)" == "all_dynamic - Win32 Debug" @@ -49,8 +49,8 @@ MTL=midl.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 -# PROP Output_Dir "obj\debug" -# PROP Intermediate_Dir "obj\debug" +# PROP Output_Dir "objs\debug" +# PROP Intermediate_Dir "objs\debug" # PROP Target_Dir "" !ENDIF diff --git a/all_static.dsp b/all_static.dsp index a56a1c9..af98227 100644 --- a/all_static.dsp +++ b/all_static.dsp @@ -36,8 +36,8 @@ MTL=midl.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "obj\release" -# PROP Intermediate_Dir "obj\release" +# PROP Output_Dir "objs\release" +# PROP Intermediate_Dir "objs\release" # PROP Target_Dir "" !ELSEIF "$(CFG)" == "all_static - Win32 Debug" @@ -49,8 +49,8 @@ MTL=midl.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 -# PROP Output_Dir "obj\debug" -# PROP Intermediate_Dir "obj\debug" +# PROP Output_Dir "objs\debug" +# PROP Intermediate_Dir "objs\debug" # PROP Target_Dir "" !ENDIF diff --git a/examples/c/decode/file/example_c_decode_file.dsp b/examples/c/decode/file/example_c_decode_file.dsp index fe0a7d2..3b4684c 100644 --- a/examples/c/decode/file/example_c_decode_file.dsp +++ b/examples/c/decode/file/example_c_decode_file.dsp @@ -37,7 +37,7 @@ RSC=rc.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\..\..\obj\release\bin" +# PROP Output_Dir "..\..\..\..\objs\release\bin" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" @@ -51,7 +51,7 @@ BSC32=bscmake.exe # 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 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 /subsystem:console /machine:I386 -# ADD LINK32 ..\..\..\..\obj\release\lib\libFLAC_static.lib ..\..\..\..\obj\release\lib\ogg_static.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 ..\..\..\..\objs\release\lib\libFLAC_static.lib ..\..\..\..\objs\release\lib\ogg_static.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "example_c_decode_file - Win32 Debug" @@ -62,7 +62,7 @@ LINK32=link.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\..\..\obj\debug\bin" +# PROP Output_Dir "..\..\..\..\objs\debug\bin" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" @@ -76,7 +76,7 @@ BSC32=bscmake.exe # 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 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 /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\..\obj\debug\lib\libFLAC_static.lib ..\..\..\..\obj\release\lib\ogg_static.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\..\objs\debug\lib\libFLAC_static.lib ..\..\..\..\objs\release\lib\ogg_static.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF diff --git a/examples/c/decode/file/example_c_decode_file.vcproj b/examples/c/decode/file/example_c_decode_file.vcproj index d8cfe26..18482f4 100644 --- a/examples/c/decode/file/example_c_decode_file.vcproj +++ b/examples/c/decode/file/example_c_decode_file.vcproj @@ -17,7 +17,7 @@ @@ -62,7 +62,7 @@ /> @@ -140,7 +140,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -140,7 +140,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -140,7 +140,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -140,7 +140,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -140,7 +140,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -140,7 +140,7 @@ /> @@ -90,7 +90,7 @@ diff --git a/src/libFLAC++/libFLAC++_static.dsp b/src/libFLAC++/libFLAC++_static.dsp index c96eac1..f222bb0 100644 --- a/src/libFLAC++/libFLAC++_static.dsp +++ b/src/libFLAC++/libFLAC++_static.dsp @@ -37,7 +37,7 @@ RSC=rc.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\obj\release\lib" +# PROP Output_Dir "..\..\objs\release\lib" # PROP Intermediate_Dir "Release_static" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c @@ -60,7 +60,7 @@ LIB32=link.exe -lib # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\obj\debug\lib" +# PROP Output_Dir "..\..\objs\debug\lib" # PROP Intermediate_Dir "Debug_static" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c diff --git a/src/libFLAC++/libFLAC++_static.vcproj b/src/libFLAC++/libFLAC++_static.vcproj index f6df69e..e2c26ce 100644 --- a/src/libFLAC++/libFLAC++_static.vcproj +++ b/src/libFLAC++/libFLAC++_static.vcproj @@ -17,7 +17,7 @@ @@ -61,7 +61,7 @@ /> @@ -127,7 +127,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -140,7 +140,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -129,7 +129,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -140,7 +140,7 @@ /> @@ -91,7 +91,7 @@ diff --git a/src/monkeys_audio_utilities/flac_ren/flac_ren.dsp b/src/monkeys_audio_utilities/flac_ren/flac_ren.dsp index 0e8cdc7..4d1caaa 100644 --- a/src/monkeys_audio_utilities/flac_ren/flac_ren.dsp +++ b/src/monkeys_audio_utilities/flac_ren/flac_ren.dsp @@ -37,7 +37,7 @@ RSC=rc.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\..\obj\release\bin" +# PROP Output_Dir "..\..\..\objs\release\bin" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" @@ -62,7 +62,7 @@ LINK32=link.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\..\obj\debug\bin" +# PROP Output_Dir "..\..\..\objs\debug\bin" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" diff --git a/src/monkeys_audio_utilities/flac_ren/flac_ren.vcproj b/src/monkeys_audio_utilities/flac_ren/flac_ren.vcproj index 0a47a3b..5fc7cbc 100644 --- a/src/monkeys_audio_utilities/flac_ren/flac_ren.vcproj +++ b/src/monkeys_audio_utilities/flac_ren/flac_ren.vcproj @@ -17,7 +17,7 @@ @@ -91,7 +91,7 @@ diff --git a/src/plugin_common/plugin_common_static.dsp b/src/plugin_common/plugin_common_static.dsp index c873773..40ad6ba 100644 --- a/src/plugin_common/plugin_common_static.dsp +++ b/src/plugin_common/plugin_common_static.dsp @@ -37,7 +37,7 @@ RSC=rc.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\obj\release\lib" +# PROP Output_Dir "..\..\objs\release\lib" # PROP Intermediate_Dir "Release_static" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c @@ -60,7 +60,7 @@ LIB32=link.exe -lib # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\obj\debug\lib" +# PROP Output_Dir "..\..\objs\debug\lib" # PROP Intermediate_Dir "Debug_static" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c diff --git a/src/plugin_common/plugin_common_static.vcproj b/src/plugin_common/plugin_common_static.vcproj index 4923c26..502b203 100644 --- a/src/plugin_common/plugin_common_static.vcproj +++ b/src/plugin_common/plugin_common_static.vcproj @@ -17,7 +17,7 @@ @@ -62,7 +62,7 @@ /> @@ -129,7 +129,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -129,7 +129,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -129,7 +129,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -129,7 +129,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -129,7 +129,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -129,7 +129,7 @@ /> @@ -92,7 +92,7 @@ diff --git a/src/test_grabbag/picture/test_picture.dsp b/src/test_grabbag/picture/test_picture.dsp index dd7879c..5450c31 100644 --- a/src/test_grabbag/picture/test_picture.dsp +++ b/src/test_grabbag/picture/test_picture.dsp @@ -37,7 +37,7 @@ RSC=rc.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\..\obj\release\bin" +# PROP Output_Dir "..\..\..\objs\release\bin" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" @@ -51,7 +51,7 @@ BSC32=bscmake.exe # 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 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 /subsystem:console /machine:I386 -# ADD LINK32 ..\..\..\obj\release\lib\grabbag_static.lib ..\..\..\obj\release\lib\replaygain_analysis_static.lib ..\..\..\obj\release\lib\libFLAC_static.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 ..\..\..\objs\release\lib\grabbag_static.lib ..\..\..\objs\release\lib\replaygain_analysis_static.lib ..\..\..\objs\release\lib\libFLAC_static.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "test_picture - Win32 Debug" @@ -62,7 +62,7 @@ LINK32=link.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\..\obj\debug\bin" +# PROP Output_Dir "..\..\..\objs\debug\bin" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" @@ -76,7 +76,7 @@ BSC32=bscmake.exe # 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 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 /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\obj\debug\lib\grabbag_static.lib ..\..\..\obj\debug\lib\replaygain_analysis_static.lib ..\..\..\obj\debug\lib\libFLAC_static.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\objs\debug\lib\grabbag_static.lib ..\..\..\objs\debug\lib\replaygain_analysis_static.lib ..\..\..\objs\debug\lib\libFLAC_static.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF diff --git a/src/test_grabbag/picture/test_picture.vcproj b/src/test_grabbag/picture/test_picture.vcproj index 5d3ac44..6f73d07 100644 --- a/src/test_grabbag/picture/test_picture.vcproj +++ b/src/test_grabbag/picture/test_picture.vcproj @@ -17,7 +17,7 @@ @@ -92,7 +92,7 @@ diff --git a/src/test_libFLAC++/test_libFLAC++.dsp b/src/test_libFLAC++/test_libFLAC++.dsp index edb8942..adc53e0 100644 --- a/src/test_libFLAC++/test_libFLAC++.dsp +++ b/src/test_libFLAC++/test_libFLAC++.dsp @@ -37,7 +37,7 @@ RSC=rc.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\obj\release\bin" +# PROP Output_Dir "..\..\objs\release\bin" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" @@ -51,7 +51,7 @@ BSC32=bscmake.exe # 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 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 /subsystem:console /machine:I386 -# ADD LINK32 ..\..\obj\release\lib\grabbag_static.lib ..\..\obj\release\lib\replaygain_analysis_static.lib ..\..\obj\release\lib\test_libs_common_static.lib ..\..\obj\release\lib\libFLAC++_static.lib ..\..\obj\release\lib\libFLAC_static.lib ..\..\obj\release\lib\ogg_static.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 ..\..\objs\release\lib\grabbag_static.lib ..\..\objs\release\lib\replaygain_analysis_static.lib ..\..\objs\release\lib\test_libs_common_static.lib ..\..\objs\release\lib\libFLAC++_static.lib ..\..\objs\release\lib\libFLAC_static.lib ..\..\objs\release\lib\ogg_static.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "test_libFLAC++ - Win32 Debug" @@ -62,7 +62,7 @@ LINK32=link.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\obj\debug\bin" +# PROP Output_Dir "..\..\objs\debug\bin" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" @@ -76,7 +76,7 @@ BSC32=bscmake.exe # 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 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 /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\obj\debug\lib\grabbag_static.lib ..\..\obj\debug\lib\replaygain_analysis_static.lib ..\..\obj\debug\lib\test_libs_common_static.lib ..\..\obj\debug\lib\libFLAC++_static.lib ..\..\obj\debug\lib\libFLAC_static.lib ..\..\obj\release\lib\ogg_static.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\objs\debug\lib\grabbag_static.lib ..\..\objs\debug\lib\replaygain_analysis_static.lib ..\..\objs\debug\lib\test_libs_common_static.lib ..\..\objs\debug\lib\libFLAC++_static.lib ..\..\objs\debug\lib\libFLAC_static.lib ..\..\objs\release\lib\ogg_static.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF diff --git a/src/test_libFLAC++/test_libFLAC++.vcproj b/src/test_libFLAC++/test_libFLAC++.vcproj index 69ed5b7..42aa628 100644 --- a/src/test_libFLAC++/test_libFLAC++.vcproj +++ b/src/test_libFLAC++/test_libFLAC++.vcproj @@ -17,7 +17,7 @@ @@ -61,7 +61,7 @@ /> @@ -138,7 +138,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -140,7 +140,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -129,7 +129,7 @@ /> @@ -62,7 +62,7 @@ /> @@ -140,7 +140,7 @@ /> @@ -92,7 +92,7 @@ diff --git a/src/utils/flacdiff/flacdiff.dsp b/src/utils/flacdiff/flacdiff.dsp index 75c9a31..6495efa 100644 --- a/src/utils/flacdiff/flacdiff.dsp +++ b/src/utils/flacdiff/flacdiff.dsp @@ -37,7 +37,7 @@ RSC=rc.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\..\obj\release\bin" +# PROP Output_Dir "..\..\..\objs\release\bin" # PROP Intermediate_Dir "Release" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" @@ -51,7 +51,7 @@ BSC32=bscmake.exe # 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 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 /subsystem:console /machine:I386 -# ADD LINK32 ..\..\..\obj\release\lib\libFLAC++_static.lib ..\..\..\obj\release\lib\libFLAC_static.lib ..\..\..\obj\release\lib\ogg_static.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 ..\..\..\objs\release\lib\libFLAC++_static.lib ..\..\..\objs\release\lib\libFLAC_static.lib ..\..\..\objs\release\lib\ogg_static.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "flacdiff - Win32 Debug" @@ -62,7 +62,7 @@ LINK32=link.exe # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\..\obj\debug\bin" +# PROP Output_Dir "..\..\..\objs\debug\bin" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" @@ -76,7 +76,7 @@ BSC32=bscmake.exe # 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 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 /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\obj\debug\lib\libFLAC++_static.lib ..\..\..\obj\debug\lib\libFLAC_static.lib ..\..\..\obj\release\lib\ogg_static.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\objs\debug\lib\libFLAC++_static.lib ..\..\..\objs\debug\lib\libFLAC_static.lib ..\..\..\objs\release\lib\ogg_static.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept !ENDIF diff --git a/src/utils/flacdiff/flacdiff.vcproj b/src/utils/flacdiff/flacdiff.vcproj index e1440b8..7b1ddc6 100644 --- a/src/utils/flacdiff/flacdiff.vcproj +++ b/src/utils/flacdiff/flacdiff.vcproj @@ -17,7 +17,7 @@ @@ -61,7 +61,7 @@ /> @@ -138,7 +138,7 @@ /> @@ -91,7 +91,7 @@