diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2007-08-03 14:44:44 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2007-08-03 14:44:44 (GMT) |
commit | e2477c8d0b76325590f43be8926634f16da5f849 (patch) | |
tree | 9f73c547c447d6af4efc0c9dddcea619a3269aa0 /windows/proj/hdf5_hl_fortrandll | |
parent | 7f2265149224ffa99b7a9825d4faf0b4823f4562 (diff) | |
download | hdf5-e2477c8d0b76325590f43be8926634f16da5f849.zip hdf5-e2477c8d0b76325590f43be8926634f16da5f849.tar.gz hdf5-e2477c8d0b76325590f43be8926634f16da5f849.tar.bz2 |
[svn-r14036] Purpose: Fix Windows debug DLL naming scheme
Description:
At a previous seminar, it was brought up that the naming scheme for Windows debug DLL is inconsistent. Specifically, some use *ddll, while others use *dlld. *dlld is more widely-used, so we decided this is "correct". This changes others to use this scheme, and adapts other projects / install scripts / documentation.
Tested:
Visual Studio .NET on WinXP
Diffstat (limited to 'windows/proj/hdf5_hl_fortrandll')
-rw-r--r-- | windows/proj/hdf5_hl_fortrandll/hdf5_hl_fortrandll.vfproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/proj/hdf5_hl_fortrandll/hdf5_hl_fortrandll.vfproj b/windows/proj/hdf5_hl_fortrandll/hdf5_hl_fortrandll.vfproj index c232128..5674160 100644 --- a/windows/proj/hdf5_hl_fortrandll/hdf5_hl_fortrandll.vfproj +++ b/windows/proj/hdf5_hl_fortrandll/hdf5_hl_fortrandll.vfproj @@ -18,7 +18,7 @@ <Tool Name="VFFortranCompilerTool" SwitchesHaveChanged="true" AdditionalOptions="/dll" SuppressStartupBanner="true" DebugInformationFormat="debugEnabled" Optimization="optimizeDisabled" AdditionalIncludeDirectories="Debug/;..\..\..\proj\hdf5_fortrandll\Debug/" PreprocessorDefinitions="HDF5F90_WINDOWS,BUILD_HDF5_DLL" WarnArgMismatch="true" CallingConvention="callConventionCVF" ModulePath="$(INTDIR)/" ObjectFile="$(INTDIR)/" AssemblerListingLocation="$(INTDIR)/" Traceback="true" BoundsCheck="true" RuntimeLibrary="rtMultiThreadedDebugDLL" CompileOnly="true"/>
<Tool Name="VFPostBuildEventTool"/>
<Tool Name="VFCustomBuildTool"/>
- <Tool Name="VFLinkerTool" SwitchesHaveChanged="true" MustRebuild="true" AdditionalOptions="/MACHINE:I386" OutputFile="..\..\..\proj\hdf5_hl_fortrandll\Debug/hdf5_hl_fortrandlld.dll" LinkIncremental="linkIncrementalYes" SuppressStartupBanner="true" GenerateDebugInformation="true" ProgramDatabaseFile="$(OUTDIR)/hdf5_hl_fortrandlld.pdb" ImportLibrary="$(OUTDIR)/hdf5_hl_fortrandlld.lib" LinkDLL="true" AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib"/>
+ <Tool Name="VFLinkerTool" SwitchesHaveChanged="true" MustRebuild="true" AdditionalOptions="/MACHINE:I386" OutputFile="..\..\..\proj\hdf5_hl_fortrandll\Debug/hdf5_hl_fortranddll.dll" LinkIncremental="linkIncrementalYes" SuppressStartupBanner="true" GenerateDebugInformation="true" ProgramDatabaseFile="$(OUTDIR)/hdf5_hl_fortranddll.pdb" ImportLibrary="$(OUTDIR)/hdf5_hl_fortranddll.lib" LinkDLL="true" AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib"/>
<Tool Name="VFResourceCompilerTool" SwitchesHaveChanged="true" PreprocessorDefinitions="_DEBUG" Culture="rcEnglishUS" ResourceOutputFileName="$(INTDIR)/$(InputName).res"/>
<Tool Name="VFPreLinkEventTool"/></Configuration></Configurations>
<Files>
|