summaryrefslogtreecommitdiffstats
path: root/windows/tools
diff options
context:
space:
mode:
authorScott Wegner <swegner@hdfgroup.org>2008-06-02 15:36:55 (GMT)
committerScott Wegner <swegner@hdfgroup.org>2008-06-02 15:36:55 (GMT)
commitc65d5ffe8dd7784e6ea2da1c67dec3caf9878976 (patch)
tree5b0f6f0fe6026b0fc36bd70f37ce6469b848f2c9 /windows/tools
parentac339aa792bc16d5c06d4e1d758ff2213c5cb286 (diff)
downloadhdf5-c65d5ffe8dd7784e6ea2da1c67dec3caf9878976.zip
hdf5-c65d5ffe8dd7784e6ea2da1c67dec3caf9878976.tar.gz
hdf5-c65d5ffe8dd7784e6ea2da1c67dec3caf9878976.tar.bz2
[svn-r15118] Purpose: Backport Windows project cleanup from trunk: remove ignored system library, standardize program debug information, and unify Windows h5tinit
Description: These changes are made via a user's suggestion, bugzilla bug #1164. These have all been tested in the trunk, and are stable/favorable changes. 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. We remove the ignored library from the project files. This actually makes no difference in the output binaries. In our debug project configurations, many of the projects were generating debug information for "Program Database and Edit & Continue". Other projects were using different settings, or none at all. We standardize to use "Program Database" setting, because it generates much smaller .obj files and cuts out unnecessary debug information. Previously, there was Windows-dependent code inside H5detect.c, because not all projects could access the gethostname() function. However, we standardize our project-files to link with WS2_32.lib, so now this function is available. Thus, the Windows-specific code has been removed from H5detect.c. Tested: VS2005 on WinXP VS.NET on WinXP
Diffstat (limited to 'windows/tools')
-rw-r--r--windows/tools/h5copy/h5copy.vcproj10
-rw-r--r--windows/tools/h5debug/h5debug.vcproj10
-rw-r--r--windows/tools/h5debugdll/h5debugdll.vcproj2
-rw-r--r--windows/tools/h5diff/h5diff.vcproj10
-rw-r--r--windows/tools/h5diffdll/h5diffdll.vcproj2
-rw-r--r--windows/tools/h5dump/h5dump.vcproj10
-rw-r--r--windows/tools/h5dumpdll/h5dumpdll.vcproj2
-rw-r--r--windows/tools/h5import/h5import.vcproj10
-rw-r--r--windows/tools/h5importdll/h5importdll.vcproj2
-rw-r--r--windows/tools/h5jam/h5jam.vcproj6
-rw-r--r--windows/tools/h5ls/h5ls.vcproj10
-rw-r--r--windows/tools/h5lsdll/h5lsdll.vcproj2
-rw-r--r--windows/tools/h5mkgrp/h5mkgrp.vcproj2
-rw-r--r--windows/tools/h5repack/h5repack.vcproj10
-rw-r--r--windows/tools/h5repackdll/h5repackdll.vcproj2
-rw-r--r--windows/tools/h5repart/h5repart.vcproj10
-rw-r--r--windows/tools/h5repartdll/h5repartdll.vcproj2
-rw-r--r--windows/tools/h5stat/h5stat.vcproj2
-rw-r--r--windows/tools/h5statdll/h5statdll.vcproj2
-rw-r--r--windows/tools/h5unjam/h5unjam.vcproj6
-rw-r--r--windows/tools/talign/talign.vcproj10
-rw-r--r--windows/tools/taligndll/taligndll.vcproj2
-rw-r--r--windows/tools/testfiles/binread/binread.vcproj2
-rw-r--r--windows/tools/testfiles/h5difftst/h5difftst.vcproj10
-rw-r--r--windows/tools/testfiles/h5dumptst/h5dumptst.vcproj10
-rw-r--r--windows/tools/testfiles/h5importtst/h5importtst.vcproj2
-rw-r--r--windows/tools/testfiles/h5jamtst/h5jamtst.vcproj6
-rw-r--r--windows/tools/testfiles/h5repacktst/h5repacktst.vcproj6
-rw-r--r--windows/tools/testfiles/h5repart_gentest/h5repart_gentest.vcproj2
-rw-r--r--windows/tools/testfiles/h5reparttst/h5reparttst.vcproj2
-rw-r--r--windows/tools/testfiles/testh5repack_detect_szip/testh5repack_detect_szip.vcproj6
-rw-r--r--windows/tools/testfiles/testh5repack_detect_szipdll/testh5repack_detect_szipdll.vcproj2
-rw-r--r--windows/tools/toolslib/toolslib.vcproj4
-rw-r--r--windows/tools/toolslibdll/toolslibdll.vcproj2
34 files changed, 89 insertions, 89 deletions
diff --git a/windows/tools/h5copy/h5copy.vcproj b/windows/tools/h5copy/h5copy.vcproj
index 81d0c12..0c27fd8 100644
--- a/windows/tools/h5copy/h5copy.vcproj
+++ b/windows/tools/h5copy/h5copy.vcproj
@@ -57,7 +57,7 @@
ProgramDataBaseFileName=".\../../../tools/h5copy/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -77,7 +77,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5copy/Debug/h5copy.pdb"
SubSystem="1"
@@ -170,7 +170,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5copy/Debug/h5copy.pdb"
SubSystem="1"
@@ -263,7 +263,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5copy/Release/h5copy.pdb"
SubSystem="1"
TargetMachine="1"
@@ -356,7 +356,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5copy/Release/h5copy.pdb"
SubSystem="1"
TargetMachine="17"
diff --git a/windows/tools/h5debug/h5debug.vcproj b/windows/tools/h5debug/h5debug.vcproj
index 57ba9b9..33e2609 100644
--- a/windows/tools/h5debug/h5debug.vcproj
+++ b/windows/tools/h5debug/h5debug.vcproj
@@ -56,7 +56,7 @@
ProgramDataBaseFileName=".\../../../tools/h5debug/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -76,7 +76,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5debug/Debug/h5debug.pdb"
SubSystem="1"
@@ -168,7 +168,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5debug/Debug/h5debug.pdb"
SubSystem="1"
@@ -261,7 +261,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5debug/Release/h5debug.pdb"
SubSystem="1"
TargetMachine="1"
@@ -354,7 +354,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5debug/Release/h5debug.pdb"
SubSystem="1"
TargetMachine="17"
diff --git a/windows/tools/h5debugdll/h5debugdll.vcproj b/windows/tools/h5debugdll/h5debugdll.vcproj
index b3c1211..caae041 100644
--- a/windows/tools/h5debugdll/h5debugdll.vcproj
+++ b/windows/tools/h5debugdll/h5debugdll.vcproj
@@ -237,7 +237,7 @@
ProgramDataBaseFileName=".\../../../tools/h5debugdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/h5diff/h5diff.vcproj b/windows/tools/h5diff/h5diff.vcproj
index fe9c65e..802cb0a 100644
--- a/windows/tools/h5diff/h5diff.vcproj
+++ b/windows/tools/h5diff/h5diff.vcproj
@@ -58,7 +58,7 @@
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -78,7 +78,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5diff/Debug/h5diff.pdb"
SubSystem="1"
@@ -172,7 +172,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5diff/Debug/h5diff.pdb"
SubSystem="1"
@@ -265,7 +265,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5diff/Release/h5diff.pdb"
SubSystem="1"
TargetMachine="1"
@@ -358,7 +358,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5diff/Release/h5diff.pdb"
SubSystem="1"
TargetMachine="17"
diff --git a/windows/tools/h5diffdll/h5diffdll.vcproj b/windows/tools/h5diffdll/h5diffdll.vcproj
index 9f0ccc6..5832727 100644
--- a/windows/tools/h5diffdll/h5diffdll.vcproj
+++ b/windows/tools/h5diffdll/h5diffdll.vcproj
@@ -238,7 +238,7 @@
ProgramDataBaseFileName=".\../../../tools/h5diffdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/h5dump/h5dump.vcproj b/windows/tools/h5dump/h5dump.vcproj
index 6e9b3fb..c5aea98 100644
--- a/windows/tools/h5dump/h5dump.vcproj
+++ b/windows/tools/h5dump/h5dump.vcproj
@@ -56,7 +56,7 @@
ProgramDataBaseFileName=".\../../../tools/h5dump/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -76,7 +76,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5dump/Debug/h5dump.pdb"
SubSystem="1"
@@ -168,7 +168,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5dump/Debug/h5dump.pdb"
SubSystem="1"
@@ -261,7 +261,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5dump/Release/h5dump.pdb"
SubSystem="1"
TargetMachine="1"
@@ -354,7 +354,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5dump/Release/h5dump.pdb"
SubSystem="1"
TargetMachine="17"
diff --git a/windows/tools/h5dumpdll/h5dumpdll.vcproj b/windows/tools/h5dumpdll/h5dumpdll.vcproj
index 92274b7..6f52325 100644
--- a/windows/tools/h5dumpdll/h5dumpdll.vcproj
+++ b/windows/tools/h5dumpdll/h5dumpdll.vcproj
@@ -238,7 +238,7 @@
ProgramDataBaseFileName=".\../../../tools/h5dumpdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/h5import/h5import.vcproj b/windows/tools/h5import/h5import.vcproj
index 566bf62..57d54fb 100644
--- a/windows/tools/h5import/h5import.vcproj
+++ b/windows/tools/h5import/h5import.vcproj
@@ -75,7 +75,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5import/Release/h5import.pdb"
SubSystem="1"
TargetMachine="1"
@@ -165,7 +165,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5import/Release/h5import.pdb"
SubSystem="1"
TargetMachine="17"
@@ -235,7 +235,7 @@
ProgramDataBaseFileName=".\../../../tools/h5import/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -255,7 +255,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5import/Debug/h5import.pdb"
SubSystem="1"
@@ -347,7 +347,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5import/Debug/h5import.pdb"
SubSystem="1"
diff --git a/windows/tools/h5importdll/h5importdll.vcproj b/windows/tools/h5importdll/h5importdll.vcproj
index f28df91..7f04a38 100644
--- a/windows/tools/h5importdll/h5importdll.vcproj
+++ b/windows/tools/h5importdll/h5importdll.vcproj
@@ -231,7 +231,7 @@
ProgramDataBaseFileName=".\../../../tools/h5importdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/h5jam/h5jam.vcproj b/windows/tools/h5jam/h5jam.vcproj
index 729e946..1ac3588 100644
--- a/windows/tools/h5jam/h5jam.vcproj
+++ b/windows/tools/h5jam/h5jam.vcproj
@@ -240,7 +240,7 @@
ProgramDataBaseFileName=".\../../../tools/h5jam/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -260,7 +260,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5jam/Debug/h5jam.pdb"
SubSystem="1"
@@ -353,7 +353,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5jam/Debug/h5jam.pdb"
SubSystem="1"
diff --git a/windows/tools/h5ls/h5ls.vcproj b/windows/tools/h5ls/h5ls.vcproj
index ae96caa..09b9522 100644
--- a/windows/tools/h5ls/h5ls.vcproj
+++ b/windows/tools/h5ls/h5ls.vcproj
@@ -78,7 +78,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5ls/Release/h5ls.pdb"
SubSystem="1"
TargetMachine="1"
@@ -171,7 +171,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5ls/Release/h5ls.pdb"
SubSystem="1"
TargetMachine="17"
@@ -241,7 +241,7 @@
ProgramDataBaseFileName=".\../../../tools/h5ls/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -261,7 +261,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5ls/Debug/h5ls.pdb"
SubSystem="1"
@@ -353,7 +353,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5ls/Debug/h5ls.pdb"
SubSystem="1"
diff --git a/windows/tools/h5lsdll/h5lsdll.vcproj b/windows/tools/h5lsdll/h5lsdll.vcproj
index cf8a1d9..272f94c 100644
--- a/windows/tools/h5lsdll/h5lsdll.vcproj
+++ b/windows/tools/h5lsdll/h5lsdll.vcproj
@@ -56,7 +56,7 @@
ProgramDataBaseFileName=".\../../../tools/h5lsdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/h5mkgrp/h5mkgrp.vcproj b/windows/tools/h5mkgrp/h5mkgrp.vcproj
index 89c0cf4..ecf65e2 100644
--- a/windows/tools/h5mkgrp/h5mkgrp.vcproj
+++ b/windows/tools/h5mkgrp/h5mkgrp.vcproj
@@ -240,7 +240,7 @@
ProgramDataBaseFileName=".\../../../tools/h5mkgrp/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/h5repack/h5repack.vcproj b/windows/tools/h5repack/h5repack.vcproj
index 998cb15..d8b31eb 100644
--- a/windows/tools/h5repack/h5repack.vcproj
+++ b/windows/tools/h5repack/h5repack.vcproj
@@ -78,7 +78,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5repack/Release/h5repack.pdb"
SubSystem="1"
TargetMachine="1"
@@ -171,7 +171,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5repack/Release/h5repack.pdb"
SubSystem="1"
TargetMachine="17"
@@ -243,7 +243,7 @@
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -264,7 +264,7 @@
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories=""
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5repack/Debug/h5repack.pdb"
SubSystem="1"
@@ -359,7 +359,7 @@
LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="D:\szip\all\lib\Debug"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5repack/Debug/h5repack.pdb"
SubSystem="1"
diff --git a/windows/tools/h5repackdll/h5repackdll.vcproj b/windows/tools/h5repackdll/h5repackdll.vcproj
index 32255b1..e8862d0 100644
--- a/windows/tools/h5repackdll/h5repackdll.vcproj
+++ b/windows/tools/h5repackdll/h5repackdll.vcproj
@@ -57,7 +57,7 @@
ProgramDataBaseFileName=".\../../../tools/h5repackdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/h5repart/h5repart.vcproj b/windows/tools/h5repart/h5repart.vcproj
index 41af4aa..0cd55fe 100644
--- a/windows/tools/h5repart/h5repart.vcproj
+++ b/windows/tools/h5repart/h5repart.vcproj
@@ -78,7 +78,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5repart/Release/h5repart.pdb"
SubSystem="1"
TargetMachine="1"
@@ -171,7 +171,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/h5repart/Release/h5repart.pdb"
SubSystem="1"
TargetMachine="17"
@@ -241,7 +241,7 @@
ProgramDataBaseFileName=".\../../../tools/h5repart/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -261,7 +261,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5repart/Debug/h5repart.pdb"
SubSystem="1"
@@ -353,7 +353,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5repart/Debug/h5repart.pdb"
SubSystem="1"
diff --git a/windows/tools/h5repartdll/h5repartdll.vcproj b/windows/tools/h5repartdll/h5repartdll.vcproj
index 3bced34..825357b 100644
--- a/windows/tools/h5repartdll/h5repartdll.vcproj
+++ b/windows/tools/h5repartdll/h5repartdll.vcproj
@@ -56,7 +56,7 @@
ProgramDataBaseFileName=".\../../../tools/h5repartdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/h5stat/h5stat.vcproj b/windows/tools/h5stat/h5stat.vcproj
index ac5f56b..825235f 100644
--- a/windows/tools/h5stat/h5stat.vcproj
+++ b/windows/tools/h5stat/h5stat.vcproj
@@ -57,7 +57,7 @@
ProgramDataBaseFileName=".\../../../tools/h5stat/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/h5statdll/h5statdll.vcproj b/windows/tools/h5statdll/h5statdll.vcproj
index 561723e..604bca1 100644
--- a/windows/tools/h5statdll/h5statdll.vcproj
+++ b/windows/tools/h5statdll/h5statdll.vcproj
@@ -57,7 +57,7 @@
ProgramDataBaseFileName=".\../../../tools/h5statdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/h5unjam/h5unjam.vcproj b/windows/tools/h5unjam/h5unjam.vcproj
index 11de671..96b3569 100644
--- a/windows/tools/h5unjam/h5unjam.vcproj
+++ b/windows/tools/h5unjam/h5unjam.vcproj
@@ -240,7 +240,7 @@
ProgramDataBaseFileName=".\../../../tools/h5unjam/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -260,7 +260,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5unjam/Debug/h5unjam.pdb"
SubSystem="1"
@@ -353,7 +353,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/h5unjam/Debug/h5unjam.pdb"
SubSystem="1"
diff --git a/windows/tools/talign/talign.vcproj b/windows/tools/talign/talign.vcproj
index a0d1004..9cbdc14 100644
--- a/windows/tools/talign/talign.vcproj
+++ b/windows/tools/talign/talign.vcproj
@@ -57,7 +57,7 @@
ProgramDataBaseFileName=".\../../../tools/talign/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -77,7 +77,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/talign/Debug/talign.pdb"
SubSystem="1"
@@ -170,7 +170,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../tools/talign/Debug/talign.pdb"
SubSystem="1"
@@ -263,7 +263,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/talign/Release/talign.pdb"
SubSystem="1"
TargetMachine="1"
@@ -356,7 +356,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../tools/talign/Release/talign.pdb"
SubSystem="1"
TargetMachine="17"
diff --git a/windows/tools/taligndll/taligndll.vcproj b/windows/tools/taligndll/taligndll.vcproj
index 5c54284..1a43d03 100644
--- a/windows/tools/taligndll/taligndll.vcproj
+++ b/windows/tools/taligndll/taligndll.vcproj
@@ -240,7 +240,7 @@
ProgramDataBaseFileName=".\../../../tools/taligndll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/testfiles/binread/binread.vcproj b/windows/tools/testfiles/binread/binread.vcproj
index b0073da..0c5cbca 100644
--- a/windows/tools/testfiles/binread/binread.vcproj
+++ b/windows/tools/testfiles/binread/binread.vcproj
@@ -233,7 +233,7 @@
ProgramDataBaseFileName=".\../../../../tools/testfiles/binread/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
/>
<Tool
Name="VCManagedResourceCompilerTool"
diff --git a/windows/tools/testfiles/h5difftst/h5difftst.vcproj b/windows/tools/testfiles/h5difftst/h5difftst.vcproj
index c0d3e69..91b7659 100644
--- a/windows/tools/testfiles/h5difftst/h5difftst.vcproj
+++ b/windows/tools/testfiles/h5difftst/h5difftst.vcproj
@@ -78,7 +78,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../tools/testfiles/h5difftst/Release/h5difftst.pdb"
SubSystem="1"
TargetMachine="1"
@@ -171,7 +171,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../tools/testfiles/h5difftst/Release/h5difftst.pdb"
SubSystem="1"
TargetMachine="17"
@@ -242,7 +242,7 @@
ProgramDataBaseFileName=".\../../../../tools/testfiles/h5difftst/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -262,7 +262,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../tools/testfiles/h5difftst/Debug/h5difftst.pdb"
SubSystem="1"
@@ -355,7 +355,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../tools/testfiles/h5difftst/Debug/h5difftst.pdb"
SubSystem="1"
diff --git a/windows/tools/testfiles/h5dumptst/h5dumptst.vcproj b/windows/tools/testfiles/h5dumptst/h5dumptst.vcproj
index 6c7effa..0eff78b 100644
--- a/windows/tools/testfiles/h5dumptst/h5dumptst.vcproj
+++ b/windows/tools/testfiles/h5dumptst/h5dumptst.vcproj
@@ -56,7 +56,7 @@
ProgramDataBaseFileName=".\../../../../tools/testfiles/h5dumptst/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -76,7 +76,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../tools/testfiles/h5dumptst/Debug/h5dumptst.pdb"
SubSystem="1"
@@ -168,7 +168,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../tools/testfiles/h5dumptst/Debug/h5dumptst.pdb"
SubSystem="1"
@@ -261,7 +261,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../tools/testfiles/h5dumptst/Release/h5dumptst.pdb"
SubSystem="1"
TargetMachine="1"
@@ -354,7 +354,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../tools/testfiles/h5dumptst/Release/h5dumptst.pdb"
SubSystem="1"
TargetMachine="17"
diff --git a/windows/tools/testfiles/h5importtst/h5importtst.vcproj b/windows/tools/testfiles/h5importtst/h5importtst.vcproj
index 85e3a75..09c09d2 100644
--- a/windows/tools/testfiles/h5importtst/h5importtst.vcproj
+++ b/windows/tools/testfiles/h5importtst/h5importtst.vcproj
@@ -57,7 +57,7 @@
ProgramDataBaseFileName=".\../../../../tools/testfiles/h5importtst/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/testfiles/h5jamtst/h5jamtst.vcproj b/windows/tools/testfiles/h5jamtst/h5jamtst.vcproj
index d0cba51..29cf40c 100644
--- a/windows/tools/testfiles/h5jamtst/h5jamtst.vcproj
+++ b/windows/tools/testfiles/h5jamtst/h5jamtst.vcproj
@@ -57,7 +57,7 @@
ProgramDataBaseFileName=".\../../../../tools/testfiles/h5jamtst/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -77,7 +77,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../tools/testfiles/h5jamtst/Debug/h5jamtst.pdb"
SubSystem="1"
@@ -170,7 +170,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../tools/testfiles/h5jamtst/Debug/h5jamtst.pdb"
SubSystem="1"
diff --git a/windows/tools/testfiles/h5repacktst/h5repacktst.vcproj b/windows/tools/testfiles/h5repacktst/h5repacktst.vcproj
index 0ff902f..3e91bcc 100644
--- a/windows/tools/testfiles/h5repacktst/h5repacktst.vcproj
+++ b/windows/tools/testfiles/h5repacktst/h5repacktst.vcproj
@@ -58,7 +58,7 @@
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -78,7 +78,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../tools/testfiles/h5repacktst/Debug/h5repacktst.pdb"
SubSystem="1"
@@ -172,7 +172,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../tools/testfiles/h5repacktst/Debug/h5repacktst.pdb"
SubSystem="1"
diff --git a/windows/tools/testfiles/h5repart_gentest/h5repart_gentest.vcproj b/windows/tools/testfiles/h5repart_gentest/h5repart_gentest.vcproj
index 9c2ab53..d36b308 100644
--- a/windows/tools/testfiles/h5repart_gentest/h5repart_gentest.vcproj
+++ b/windows/tools/testfiles/h5repart_gentest/h5repart_gentest.vcproj
@@ -57,7 +57,7 @@
ProgramDataBaseFileName=".\../../../../tools/testfiles/h5repart_gentest/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/testfiles/h5reparttst/h5reparttst.vcproj b/windows/tools/testfiles/h5reparttst/h5reparttst.vcproj
index f4c55ba..93fe8b7 100644
--- a/windows/tools/testfiles/h5reparttst/h5reparttst.vcproj
+++ b/windows/tools/testfiles/h5reparttst/h5reparttst.vcproj
@@ -57,7 +57,7 @@
ProgramDataBaseFileName=".\../../../../tools/testfiles/h5reparttst/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/testfiles/testh5repack_detect_szip/testh5repack_detect_szip.vcproj b/windows/tools/testfiles/testh5repack_detect_szip/testh5repack_detect_szip.vcproj
index 09962d5..9dd3516 100644
--- a/windows/tools/testfiles/testh5repack_detect_szip/testh5repack_detect_szip.vcproj
+++ b/windows/tools/testfiles/testh5repack_detect_szip/testh5repack_detect_szip.vcproj
@@ -240,7 +240,7 @@
ProgramDataBaseFileName=".\../../../../tools/testfiles/testh5repack_detect_szip/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -260,7 +260,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../tools/testfiles/testh5repack_detect_szip/Debug/testh5repack_detect_szip.pdb"
SubSystem="1"
@@ -353,7 +353,7 @@
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../tools/testfiles/testh5repack_detect_szip/Debug/testh5repack_detect_szip.pdb"
SubSystem="1"
diff --git a/windows/tools/testfiles/testh5repack_detect_szipdll/testh5repack_detect_szipdll.vcproj b/windows/tools/testfiles/testh5repack_detect_szipdll/testh5repack_detect_szipdll.vcproj
index 9f240d7..8f77a23 100644
--- a/windows/tools/testfiles/testh5repack_detect_szipdll/testh5repack_detect_szipdll.vcproj
+++ b/windows/tools/testfiles/testh5repack_detect_szipdll/testh5repack_detect_szipdll.vcproj
@@ -238,7 +238,7 @@
ProgramDataBaseFileName=".\../../../../tools/testfiles/testh5repack_detect_szipdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/toolslib/toolslib.vcproj b/windows/tools/toolslib/toolslib.vcproj
index 3870816..1b70001 100644
--- a/windows/tools/toolslib/toolslib.vcproj
+++ b/windows/tools/toolslib/toolslib.vcproj
@@ -53,7 +53,7 @@
ProgramDataBaseFileName=".\..\..\..\tools\toolslib\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="1"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -125,7 +125,7 @@
ProgramDataBaseFileName=".\..\..\..\tools\toolslib\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="1"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/tools/toolslibdll/toolslibdll.vcproj b/windows/tools/toolslibdll/toolslibdll.vcproj
index 5907a8c..4b1ab23 100644
--- a/windows/tools/toolslibdll/toolslibdll.vcproj
+++ b/windows/tools/toolslibdll/toolslibdll.vcproj
@@ -55,7 +55,7 @@
ProgramDataBaseFileName=".\..\..\..\tools\toolslibdll\Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool