diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-05-29 17:45:36 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-05-29 17:45:36 (GMT) |
commit | 15024258cba9a3fd4eb2aa37e116467776a5e5b7 (patch) | |
tree | 2898c7e334c482e899be93bda78ba5a2ff74e801 /windows/test/err_compat/err_compat.vcproj | |
parent | 64b2c94612a93f056202a73811e03ae878dba443 (diff) | |
download | hdf5-15024258cba9a3fd4eb2aa37e116467776a5e5b7.zip hdf5-15024258cba9a3fd4eb2aa37e116467776a5e5b7.tar.gz hdf5-15024258cba9a3fd4eb2aa37e116467776a5e5b7.tar.bz2 |
[svn-r15093] Purpose: Cleanup Windows project files-- remove ignored system library
Description:
In many of our project files on Windows, we have our linker setting set to ignore old link libraries-- either libc.lib or libcd.lib. This is a relic from converting project files from old versions of Visual Studio to newer ones, and is unnecessary. Per a user's suggestion, we remove the ignored library from the project files. This actually makes no difference in the output binaries.
Tested:
VS2005 on WinXP
VS.NET on WinXP
Diffstat (limited to 'windows/test/err_compat/err_compat.vcproj')
-rw-r--r-- | windows/test/err_compat/err_compat.vcproj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/windows/test/err_compat/err_compat.vcproj b/windows/test/err_compat/err_compat.vcproj index 861d007..b2057fe 100644 --- a/windows/test/err_compat/err_compat.vcproj +++ b/windows/test/err_compat/err_compat.vcproj @@ -78,7 +78,7 @@ OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="0"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../test/err_compat/Debug/err_compat.pdb"
SubSystem="1"
@@ -171,7 +171,7 @@ OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="0"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../test/err_compat/Debug/err_compat.pdb"
SubSystem="1"
@@ -264,7 +264,7 @@ OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="0"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../test/err_compat/Release/err_compat.pdb"
SubSystem="1"
TargetMachine="1"
@@ -357,7 +357,7 @@ OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="0"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../test/err_compat/Release/err_compat.pdb"
SubSystem="1"
TargetMachine="17"
|