diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-06-02 15:36:55 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-06-02 15:36:55 (GMT) |
commit | c65d5ffe8dd7784e6ea2da1c67dec3caf9878976 (patch) | |
tree | 5b0f6f0fe6026b0fc36bd70f37ce6469b848f2c9 /windows/c++ | |
parent | ac339aa792bc16d5c06d4e1d758ff2213c5cb286 (diff) | |
download | hdf5-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/c++')
18 files changed, 54 insertions, 54 deletions
diff --git a/windows/c++/examples/chunkstest/chunkstest.vcproj b/windows/c++/examples/chunkstest/chunkstest.vcproj index 1ea58cd..acf3a35 100644 --- a/windows/c++/examples/chunkstest/chunkstest.vcproj +++ b/windows/c++/examples/chunkstest/chunkstest.vcproj @@ -79,7 +79,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/chunkstest/Release/chunkstest.pdb"
SubSystem="1"
TargetMachine="1"
@@ -150,7 +150,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/chunkstest/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -171,7 +171,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/chunkstest/Debug/chunkstest.pdb"
SubSystem="1"
@@ -266,7 +266,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/chunkstest/Release/chunkstest.pdb"
SubSystem="1"
TargetMachine="17"
@@ -359,7 +359,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/chunkstest/Debug/chunkstest.pdb"
SubSystem="1"
diff --git a/windows/c++/examples/chunkstestdll/chunkstestdll.vcproj b/windows/c++/examples/chunkstestdll/chunkstestdll.vcproj index b3804d9..1a486de 100644 --- a/windows/c++/examples/chunkstestdll/chunkstestdll.vcproj +++ b/windows/c++/examples/chunkstestdll/chunkstestdll.vcproj @@ -149,7 +149,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/chunkstestdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/c++/examples/compoundtest/compoundtest.vcproj b/windows/c++/examples/compoundtest/compoundtest.vcproj index b43fb73..c05a1cc 100644 --- a/windows/c++/examples/compoundtest/compoundtest.vcproj +++ b/windows/c++/examples/compoundtest/compoundtest.vcproj @@ -79,7 +79,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/compoundtest/Release/compoundtest.pdb"
SubSystem="1"
TargetMachine="1"
@@ -150,7 +150,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/compoundtest/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -171,7 +171,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/compoundtest/Debug/compoundtest.pdb"
SubSystem="1"
@@ -266,7 +266,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/compoundtest/Release/compoundtest.pdb"
SubSystem="1"
TargetMachine="17"
@@ -359,7 +359,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/compoundtest/Debug/compoundtest.pdb"
SubSystem="1"
diff --git a/windows/c++/examples/compoundtestdll/compoundtestdll.vcproj b/windows/c++/examples/compoundtestdll/compoundtestdll.vcproj index 0f67594..0c1b2af 100644 --- a/windows/c++/examples/compoundtestdll/compoundtestdll.vcproj +++ b/windows/c++/examples/compoundtestdll/compoundtestdll.vcproj @@ -149,7 +149,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/compoundtestdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/c++/examples/createtest/createtest.vcproj b/windows/c++/examples/createtest/createtest.vcproj index 076df52..9c87dfc 100644 --- a/windows/c++/examples/createtest/createtest.vcproj +++ b/windows/c++/examples/createtest/createtest.vcproj @@ -57,7 +57,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/createtest/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -78,7 +78,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/createtest/Debug/createtest.pdb"
SubSystem="1"
@@ -172,7 +172,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/createtest/Release/createtest.pdb"
SubSystem="1"
TargetMachine="1"
@@ -265,7 +265,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/createtest/Debug/createtest.pdb"
SubSystem="1"
@@ -360,7 +360,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/createtest/Release/createtest.pdb"
SubSystem="1"
TargetMachine="17"
diff --git a/windows/c++/examples/createtestdll/createtestdll.vcproj b/windows/c++/examples/createtestdll/createtestdll.vcproj index f744f19..cf3b0da 100644 --- a/windows/c++/examples/createtestdll/createtestdll.vcproj +++ b/windows/c++/examples/createtestdll/createtestdll.vcproj @@ -57,7 +57,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/createtestdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/c++/examples/extend_dstest/extend_dstest.vcproj b/windows/c++/examples/extend_dstest/extend_dstest.vcproj index 096d913..084f2b8 100644 --- a/windows/c++/examples/extend_dstest/extend_dstest.vcproj +++ b/windows/c++/examples/extend_dstest/extend_dstest.vcproj @@ -79,7 +79,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/extend_dstest/Release/extend_dstest.pdb"
SubSystem="1"
TargetMachine="1"
@@ -150,7 +150,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/extend_dstest/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -171,7 +171,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/extend_dstest/Debug/extend_dstest.pdb"
SubSystem="1"
@@ -266,7 +266,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/extend_dstest/Release/extend_dstest.pdb"
SubSystem="1"
TargetMachine="17"
@@ -359,7 +359,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/extend_dstest/Debug/extend_dstest.pdb"
SubSystem="1"
diff --git a/windows/c++/examples/extend_dstestdll/extend_dstestdll.vcproj b/windows/c++/examples/extend_dstestdll/extend_dstestdll.vcproj index 8e03d4e..dc61bee 100644 --- a/windows/c++/examples/extend_dstestdll/extend_dstestdll.vcproj +++ b/windows/c++/examples/extend_dstestdll/extend_dstestdll.vcproj @@ -57,7 +57,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/extend_dstestdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/c++/examples/h5grouptest/h5grouptest.vcproj b/windows/c++/examples/h5grouptest/h5grouptest.vcproj index 576f31d..0b078dc 100644 --- a/windows/c++/examples/h5grouptest/h5grouptest.vcproj +++ b/windows/c++/examples/h5grouptest/h5grouptest.vcproj @@ -79,7 +79,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/h5grouptest/Release/h5grouptest.pdb"
SubSystem="1"
TargetMachine="1"
@@ -150,7 +150,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/h5grouptest/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -171,7 +171,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/h5grouptest/Debug/h5grouptest.pdb"
SubSystem="1"
@@ -266,7 +266,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/h5grouptest/Release/h5grouptest.pdb"
SubSystem="1"
TargetMachine="17"
@@ -359,7 +359,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/h5grouptest/Debug/h5grouptest.pdb"
SubSystem="1"
diff --git a/windows/c++/examples/h5grouptestdll/h5grouptestdll.vcproj b/windows/c++/examples/h5grouptestdll/h5grouptestdll.vcproj index 6a7c1d9..07d3b5b 100644 --- a/windows/c++/examples/h5grouptestdll/h5grouptestdll.vcproj +++ b/windows/c++/examples/h5grouptestdll/h5grouptestdll.vcproj @@ -149,7 +149,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/h5grouptestdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/c++/examples/readdatatest/readdatatest.vcproj b/windows/c++/examples/readdatatest/readdatatest.vcproj index 601f73b..4be275e 100644 --- a/windows/c++/examples/readdatatest/readdatatest.vcproj +++ b/windows/c++/examples/readdatatest/readdatatest.vcproj @@ -57,7 +57,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/readdatatest/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -78,7 +78,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/readdatatest/Debug/readdatatest.pdb"
SubSystem="1"
@@ -172,7 +172,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/readdatatest/Release/readdatatest.pdb"
SubSystem="1"
TargetMachine="1"
@@ -265,7 +265,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/readdatatest/Debug/readdatatest.pdb"
SubSystem="1"
@@ -360,7 +360,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/readdatatest/Release/readdatatest.pdb"
SubSystem="1"
TargetMachine="17"
diff --git a/windows/c++/examples/readdatatestdll/readdatatestdll.vcproj b/windows/c++/examples/readdatatestdll/readdatatestdll.vcproj index f4afec3..b84f405 100644 --- a/windows/c++/examples/readdatatestdll/readdatatestdll.vcproj +++ b/windows/c++/examples/readdatatestdll/readdatatestdll.vcproj @@ -57,7 +57,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/readdatatestdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/c++/examples/writedatatest/writedatatest.vcproj b/windows/c++/examples/writedatatest/writedatatest.vcproj index 7ca5964..c98fb67 100644 --- a/windows/c++/examples/writedatatest/writedatatest.vcproj +++ b/windows/c++/examples/writedatatest/writedatatest.vcproj @@ -80,7 +80,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/writedatatest/Release/writedatatest.pdb"
SubSystem="1"
TargetMachine="1"
@@ -151,7 +151,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/writedatatest/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
@@ -172,7 +172,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/writedatatest/Debug/writedatatest.pdb"
SubSystem="1"
@@ -267,7 +267,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\release;..\..\..\..\proj\hdf5\release;..\..\..\..\hdf5lib\release\lib"
- IgnoreDefaultLibraryNames="libcpp.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/examples/writedatatest/Release/writedatatest.pdb"
SubSystem="1"
TargetMachine="17"
@@ -360,7 +360,7 @@ LinkIncremental="1"
SuppressStartupBanner="true"
AdditionalLibraryDirectories="..\..\..\..\proj\hdf5_cpp\debug;..\..\..\..\proj\hdf5\debug;..\..\..\..\hdf5lib\debug\lib"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/examples/writedatatest/Debug/writedatatest.pdb"
SubSystem="1"
diff --git a/windows/c++/examples/writedatatestdll/writedatatestdll.vcproj b/windows/c++/examples/writedatatestdll/writedatatestdll.vcproj index 4117534..cb1b009 100644 --- a/windows/c++/examples/writedatatestdll/writedatatestdll.vcproj +++ b/windows/c++/examples/writedatatestdll/writedatatestdll.vcproj @@ -149,7 +149,7 @@ ProgramDataBaseFileName=".\../../../../c++/examples/writedatatestdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/c++/test/dsets_cpp/dsets_cpp.vcproj b/windows/c++/test/dsets_cpp/dsets_cpp.vcproj index 3b37eee..ac426fc 100644 --- a/windows/c++/test/dsets_cpp/dsets_cpp.vcproj +++ b/windows/c++/test/dsets_cpp/dsets_cpp.vcproj @@ -57,7 +57,7 @@ ProgramDataBaseFileName=".\../../../../test/dsets_cpp/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=".\../../../../test/dsets_cpp/Debug/dsets_cpp.pdb"
SubSystem="1"
@@ -170,7 +170,7 @@ OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../test/dsets_cpp/Debug/dsets_cpp.pdb"
SubSystem="1"
@@ -263,7 +263,7 @@ OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../test/dsets_cpp/Release/dsets_cpp.pdb"
SubSystem="1"
TargetMachine="1"
@@ -356,7 +356,7 @@ OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../test/dsets_cpp/Release/dsets_cpp.pdb"
SubSystem="1"
TargetMachine="17"
diff --git a/windows/c++/test/dsets_cppdll/dsets_cppdll.vcproj b/windows/c++/test/dsets_cppdll/dsets_cppdll.vcproj index 8ff1c29..4426d43 100644 --- a/windows/c++/test/dsets_cppdll/dsets_cppdll.vcproj +++ b/windows/c++/test/dsets_cppdll/dsets_cppdll.vcproj @@ -57,7 +57,7 @@ ProgramDataBaseFileName=".\../../../../test/dsets_cppdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
diff --git a/windows/c++/test/testhdf5_cpp/testhdf5_cpp.vcproj b/windows/c++/test/testhdf5_cpp/testhdf5_cpp.vcproj index d60a52d..a364c4a 100644 --- a/windows/c++/test/testhdf5_cpp/testhdf5_cpp.vcproj +++ b/windows/c++/test/testhdf5_cpp/testhdf5_cpp.vcproj @@ -78,7 +78,7 @@ OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/test/testhdf5_cpp/Release/testhdf5_cpp.pdb"
SubSystem="1"
TargetMachine="1"
@@ -171,7 +171,7 @@ OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libcd.lib"
+ IgnoreDefaultLibraryNames=""
ProgramDatabaseFile=".\../../../../c++/test/testhdf5_cpp/Release/testhdf5_cpp.pdb"
SubSystem="1"
TargetMachine="17"
@@ -242,7 +242,7 @@ ProgramDataBaseFileName=".\../../../../c++/test/testhdf5_cpp/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=".\../../../../c++/test/testhdf5_cpp/Debug/testhdf5_cpp.pdb"
SubSystem="1"
@@ -355,7 +355,7 @@ OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
SuppressStartupBanner="true"
- IgnoreDefaultLibraryNames="libc.lib"
+ IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
ProgramDatabaseFile=".\../../../../c++/test/testhdf5_cpp/Debug/testhdf5_cpp.pdb"
SubSystem="1"
diff --git a/windows/c++/test/testhdf5_cppdll/testhdf5_cppdll.vcproj b/windows/c++/test/testhdf5_cppdll/testhdf5_cppdll.vcproj index d64d274..2e93783 100644 --- a/windows/c++/test/testhdf5_cppdll/testhdf5_cppdll.vcproj +++ b/windows/c++/test/testhdf5_cppdll/testhdf5_cppdll.vcproj @@ -57,7 +57,7 @@ ProgramDataBaseFileName=".\../../../../c++/test/testhdf5_cppdll/Debug/"
WarningLevel="3"
SuppressStartupBanner="true"
- DebugInformationFormat="4"
+ DebugInformationFormat="3"
CompileAs="0"
/>
<Tool
|