[xiph-commits] r11465 - in trunk/vorbis-tools/win32/VS2005: oggdec oggenc ogginfo vorbiscomment

illiminable at svn.xiph.org illiminable at svn.xiph.org
Mon May 29 02:09:54 PDT 2006


Author: illiminable
Date: 2006-05-29 02:09:43 -0700 (Mon, 29 May 2006)
New Revision: 11465

Added:
   trunk/vorbis-tools/win32/VS2005/oggenc/config.h
Modified:
   trunk/vorbis-tools/win32/VS2005/oggdec/oggdec.vcproj
   trunk/vorbis-tools/win32/VS2005/oggenc/oggenc.vcproj
   trunk/vorbis-tools/win32/VS2005/ogginfo/ogginfo.vcproj
   trunk/vorbis-tools/win32/VS2005/vorbiscomment/vorbiscomment.vcproj
Log:
* Make output path consistent

Modified: trunk/vorbis-tools/win32/VS2005/oggdec/oggdec.vcproj
===================================================================
--- trunk/vorbis-tools/win32/VS2005/oggdec/oggdec.vcproj	2006-05-29 09:07:39 UTC (rev 11464)
+++ trunk/vorbis-tools/win32/VS2005/oggdec/oggdec.vcproj	2006-05-29 09:09:43 UTC (rev 11465)
@@ -4,6 +4,7 @@
 	Version="8.00"
 	Name="oggdec"
 	ProjectGUID="{D01454C5-2C94-45E1-917C-1C5CBC6990A0}"
+	RootNamespace="oggdec"
 	Keyword="Win32Proj"
 	>
 	<Platforms>
@@ -16,7 +17,7 @@
 	<Configurations>
 		<Configuration
 			Name="Debug|Win32"
-			OutputDirectory="Debug"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
 			IntermediateDirectory="Debug"
 			ConfigurationType="1"
 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
@@ -95,7 +96,7 @@
 		</Configuration>
 		<Configuration
 			Name="Release|Win32"
-			OutputDirectory="Release"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
 			IntermediateDirectory="Release"
 			ConfigurationType="1"
 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"

Added: trunk/vorbis-tools/win32/VS2005/oggenc/config.h
===================================================================
--- trunk/vorbis-tools/win32/VS2005/oggenc/config.h	2006-05-29 09:07:39 UTC (rev 11464)
+++ trunk/vorbis-tools/win32/VS2005/oggenc/config.h	2006-05-29 09:09:43 UTC (rev 11465)
@@ -0,0 +1,5 @@
+#ifndef _CONFIG_H
+#define _CONFIG_H
+
+#define VERSION "1.1.2"
+#endif
\ No newline at end of file

Modified: trunk/vorbis-tools/win32/VS2005/oggenc/oggenc.vcproj
===================================================================
--- trunk/vorbis-tools/win32/VS2005/oggenc/oggenc.vcproj	2006-05-29 09:07:39 UTC (rev 11464)
+++ trunk/vorbis-tools/win32/VS2005/oggenc/oggenc.vcproj	2006-05-29 09:09:43 UTC (rev 11465)
@@ -4,6 +4,7 @@
 	Version="8.00"
 	Name="oggenc"
 	ProjectGUID="{10DA267E-7738-4E7E-9C31-9D0DF49A0B96}"
+	RootNamespace="oggenc"
 	Keyword="Win32Proj"
 	>
 	<Platforms>
@@ -16,7 +17,7 @@
 	<Configurations>
 		<Configuration
 			Name="Debug|Win32"
-			OutputDirectory="Debug"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
 			IntermediateDirectory="Debug"
 			ConfigurationType="1"
 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
@@ -95,7 +96,7 @@
 		</Configuration>
 		<Configuration
 			Name="Release|Win32"
-			OutputDirectory="Release"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
 			IntermediateDirectory="Release"
 			ConfigurationType="1"
 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
@@ -227,10 +228,6 @@
 				>
 			</File>
 			<File
-				RelativePath=".\config.h"
-				>
-			</File>
-			<File
 				RelativePath="..\..\..\oggenc\easyflac.h"
 				>
 			</File>

Modified: trunk/vorbis-tools/win32/VS2005/ogginfo/ogginfo.vcproj
===================================================================
--- trunk/vorbis-tools/win32/VS2005/ogginfo/ogginfo.vcproj	2006-05-29 09:07:39 UTC (rev 11464)
+++ trunk/vorbis-tools/win32/VS2005/ogginfo/ogginfo.vcproj	2006-05-29 09:09:43 UTC (rev 11465)
@@ -4,6 +4,7 @@
 	Version="8.00"
 	Name="ogginfo"
 	ProjectGUID="{D60948A2-4781-435B-9609-786C0B564DBD}"
+	RootNamespace="ogginfo"
 	Keyword="Win32Proj"
 	>
 	<Platforms>
@@ -16,7 +17,7 @@
 	<Configurations>
 		<Configuration
 			Name="Debug|Win32"
-			OutputDirectory="Debug"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
 			IntermediateDirectory="Debug"
 			ConfigurationType="1"
 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
@@ -95,7 +96,7 @@
 		</Configuration>
 		<Configuration
 			Name="Release|Win32"
-			OutputDirectory="Release"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
 			IntermediateDirectory="Release"
 			ConfigurationType="1"
 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"

Modified: trunk/vorbis-tools/win32/VS2005/vorbiscomment/vorbiscomment.vcproj
===================================================================
--- trunk/vorbis-tools/win32/VS2005/vorbiscomment/vorbiscomment.vcproj	2006-05-29 09:07:39 UTC (rev 11464)
+++ trunk/vorbis-tools/win32/VS2005/vorbiscomment/vorbiscomment.vcproj	2006-05-29 09:09:43 UTC (rev 11465)
@@ -16,7 +16,7 @@
 	<Configurations>
 		<Configuration
 			Name="Debug|Win32"
-			OutputDirectory="Debug"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
 			IntermediateDirectory="Debug"
 			ConfigurationType="1"
 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
@@ -95,7 +95,7 @@
 		</Configuration>
 		<Configuration
 			Name="Release|Win32"
-			OutputDirectory="Release"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
 			IntermediateDirectory="Release"
 			ConfigurationType="1"
 			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"



More information about the commits mailing list