summaryrefslogtreecommitdiffstats
path: root/windows/proj/hdf5
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r22952] Purpose:Dana Robinson2012-10-231-1500/+0
| | | | | Removed legacy Visual Studio solutions and projects, which will no longer be supported after HDF5 1.8.10.
* [svn-r22093] HDFFV-7931: timezone issueAllen Byrne2012-03-191-4/+4
| | | | | | Runtime library setting should be to DLL versions for static. Tested: windows
* [svn-r21599] add new files to legacy projectsAllen Byrne2011-10-181-1477/+1485
|
* [svn-r20137] Correct hl/fortran/src INCLUDE_DIRECTORIES.Allen Byrne2011-02-221-0/+4
| | | | Add new efc files and projects to windows
* [svn-r19136] Added new file to windows project files.Allen Byrne2010-07-281-4/+8
| | | | Added new file to src/CMakeLists.txt
* [svn-r18575] Added new file to projectAllen Byrne2010-04-151-0/+4
|
* [svn-r18509] Updated project files to generate and link H5lib_settings.cAllen Byrne2010-04-051-0/+4
|
* [svn-r18424] Upgraded all project files to VS2008. Allen Byrne2010-03-181-9/+11
| | | | | | Changed batch files by removing VS2005 and IVF91 options. Added libsettings project to behave like h5tinit.vcproj. Updated Manifest
* [svn-r18423] Add windows define BIND_TO_CURRENT_VCLIBS_VERSION=1 to project ↵Allen Byrne2010-03-181-4/+4
| | | | files
* [svn-r18103] Added new H5HLint.c file. Corrected nodebug parameter to check.Allen Byrne2010-01-111-0/+4
| | | | Tested: windows
* [svn-r17950] Added new H5SMmessage.c file to project filesAllen Byrne2009-12-021-0/+4
| | | | Tested: Windows
* [svn-r17743] Added new file to project filesAllen Byrne2009-10-261-0/+4
|
* [svn-r17378] Added new file to library project file, H5Fsuper_cache.c.Allen Byrne2009-08-181-7966/+4
| | | | | | Cleaned project files of extraneous project info that should not have been used. The info was removed from individual files. Tested: windows
* [svn-r17258] Added new file, H5Dlayout.c to project files.Allen Byrne2009-07-281-0/+3
| | | | Tested XP32 VS2005
* [svn-r16741] Added missing h5Groot.c to project filesAllen Byrne2009-04-131-0/+42
| | | | Tested on XP32-VS2005-IVF101
* [svn-r16208] Added new file H5Bdbg.c to windows project file. Tested using ↵Allen Byrne2008-12-181-1/+43
| | | | VS2008 Express.
* [svn-r16190] Changed references of H5Distore to H5Dbtree in project files. ↵Allen Byrne2008-12-121-1/+1
| | | | (Related to revision 16180)
* [svn-r16090] Purpose: Add new source file to Windows.Scott Wegner2008-11-171-0/+4
| | | | | | | | Description: Recently a new source file, H5Pdapl.c, was brought to the 1.8 branch. This checkin also adds it to the Windows Visual Studio projects. Tested: None needed, very minor.
* [svn-r15813] Purpose: Add new source code and tests to WindowsScott Wegner2008-10-081-0/+52
| | | | | | | | | | Description: Many new source files were added from the freespace branch. This checkin adds the code to Windows as well. Note: Some tests are still failing on Windows, but this checkin brings us closer to fixing them. In particular, freespace test fails on compile (Quincey is working on it), and the DLL links test fails at runtime (I'll look into it) Tested: VS2005 on WinXP
* [svn-r15120] Purpose: Ignore Windows POSIX-Depreciation warnings in Visual ↵Scott Wegner2008-06-021-4/+4
| | | | | | | | | | Studio 2005 Description: On Windows, we receive many compiler warnings because Microsoft has implemented many "security-enhanced" versions of POSIX functions. However, the old versions still exist, so the warnings can be ignored. By setting a preprocessor definition, we can disable many of these warnings. On a typical HDF5 build, this reduces the number of warnings from ~1500 to ~600 Tested: VS2005 on WinXP
* [svn-r15118] Purpose: Backport Windows project cleanup from trunk: remove ↵Scott Wegner2008-06-021-2/+2
| | | | | | | | | | | | | | | | | 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
* [svn-r14868] Purpose: Add new source files to Windows projectsScott Wegner2008-04-281-0/+8
| | | | | | | | Description: Two new source files have been added, H5Dchunk.c and H5Dscatgath.c. This checkin adds the files to the Windows project files as well. Tested: VS.NET on WinXP
* [svn-r14416] Purpose: Add source files to Windows projectsScott Wegner2008-01-151-0/+8
| | | | | | | | Description: This catches up Windows to most of the new source files that have been added. Specifically, H5FDpkg.h and H5FDspace.c have been added to the library projects, and tcoords.c has been added to testhdf5. This goes for VS2005 and VS6 project files. Tested: Only built, VS2005
* [svn-r14298] Purpose: Remove references of H5FD_stream.c from Windows ↵Scott Wegner2007-11-281-46/+0
| | | | | | | | | project files. Description: The stream file driver was recently removed from the HDF5-1.8 source. This checkin removes any left-over references in the Windows projects. Tested: VS2005
* [svn-r14207] Purpose: Bring Windows up-to-dateScott Wegner2007-10-171-0/+16
| | | | | | | | | Description: -- Add new source files to Windows projects: H5Pdeprec.c, H5Pint.c, H5Ddbg.c, H5Dint.c -- Add new h5dump XML tests to Windows test script Tested: VS2005 on WinXP
* [svn-r14149] Purpose: Add new source files to Windows projectsScott Wegner2007-09-171-0/+8
| | | | | | | | Description: Two new files, h5rdeprec.c and h5rpkg.h were added to the Windows HDF5 projects. Tested: VS2005, build only.
* [svn-r14093] Purpose: Convert Windows projects to VS2005 format and support ↵Scott Wegner2007-08-161-1096/+6309
| | | | | | | | | | | 64-bit Fortran Description: This checkin is another Windows project cleanup, and also extends our Windows support for 64-bit Fortran. Project files are now in VS2005 format, rather than VS.NET. A couple projects have been renamed to be more descriptive (*cstub rather than *_lib), and project settings make better use of build macros. This will make them much easier to update in the future. Tested: VS2005 on WinXP 32-bit VS2005 on WinXP x64
* [svn-r14057] Purpose: Fixes for 64-bit Windows Intel Fortran 9.1Scott Wegner2007-08-091-3463/+0
| | | | | | | | | | | | Description: We are porting Fortran to 64-bit Windows, and need to make many syntactical changes to bring the code up to date. We now go back to using "!DEC$" rather than "!MS$" in our "ATTRIBUTE" code. Also, the naming conventions for mixed language is inconsistent from 32- to 64- bit Windows. To make up with this, we use the "decorate" flag. We also needed to change the "calling convention" in project settings from "CVF" to "default". Also other minor cleanups on project files. Tested: 32-bit: VS.NET and VS2005 64-bit: VS2005
* [svn-r14019] Update windows project files for .Net to reflect Quincey's new ↵MuQun Yang2007-07-261-0/+9
| | | | source code check-in. Tested on .Net and VS 6.0.
* [svn-r13981] Purpose: Windows catchupScott Wegner2007-07-161-0/+3
| | | | | | | | | | Description: - Add new source file H5version.h to Windows projects - Add new h5stat tests, and uncomment one that no longer fails - Clean up autotests a little bit. Tested: VS.NET on WinXP
* [svn-r13929] Purpose: Add source to Windows projectsScott Wegner2007-06-291-0/+6
| | | | | | | | Description: Added new H5WB.c and H5WBprivate.h files to our Windows .NET / 6.0 project files. Tested: VS.NET on WinXP
* [svn-r13922] Purpose: First step in VS6 DepreciationScott Wegner2007-06-272-3560/+7519
| | | | | | | | | | | | | | | | | Desciption: This is the first major check-in in the process of depreciating Visual Studio 6.0. We create a new directory, windows_vs6, which now holds all of our previous VS6 project files. We expect to maintain this directory for only a short time (perhaps one release), so users have time to make the change. The ./windows directory now contains project files for Visual Studio .Net, as well as existing source and test scripts. This will allow us to greatly simplify the build process for the majority of our users. We have created a new solution (.Net equivolent of workspace) that houses the Fortran project files. This allowed us to remove these files from the main solution, as well as streamline the conversion in the Fortran solution. It is also much easier now to convert to Visual Studio 2005 files. Notes: I didn't update the MANIFEST with this check-in, I will make those changes shortly. Also, I haven't yet updated the documentation to reflect this check-in. That is going to require more work. We will be giving a seminar in the coming weeks about .Net and how to migrate over. Tested: VS6/VNET/VS2005 on WinXP 32/64-bit
* [svn-r13921] Purpose: Add new file to Windows projectsScott Wegner2007-06-261-6/+21
| | | | | Description: Added new H5Dfill.c source file which was added in revision 13918.
* [svn-r13863] Added H5FDwindows.c to Windows project files, although sec2 is ↵Scott Wegner2007-06-141-6/+21
| | | | | | | | | still the default. Also added a Windows-specific macro, WINDOWS_USE_STDIO, which users can define if they'd like the Windows VFD to use the buffered low-level I/O functions. This is instead of splitting our Windows driver into two separate drivers. By default, this macro is undefined. Tested: VS6 on WinXP
* [svn-r13734] Added new source files (from rev. 13721) to Windows project files.Scott Wegner2007-05-051-85/+100
| | | | | | | Note: ohdr_gentst currently fails on Windows, and is disabled by default. I'm working with Quincy to get this fixed. Tested: VS6 on WinXP
* [svn-r13649] Updated Windows project files hdf5.dsp and hdf5dll.dsp to ↵Scott Wegner2007-04-121-6/+85
| | | | | | | include new source files. Tested: VS6 on WinXP
* [svn-r13504] Added new source file H5Orefcount.c to Windows project files ↵Scott Wegner2007-03-121-6/+21
| | | | | | | hdf5.dsp and hdf5dll.dsp Tested: MSVS6.0 on Win XP
* [svn-r13478] Added new source file H5Oainfo.c to Windows project files ↵Scott Wegner2007-03-081-6/+21
| | | | | | | hdf5.dsp and hdf5dll.dsp. Tested: Visual Studio 6.0 on Windows XP
* [svn-r13462] Updated Windows project files to include new source files:Scott Wegner2007-03-051-6/+36
| | | | | | | | | H5Obtreek.c and H5Odrvinfo.c in hdf5.dsp and hdf5dll.dsp h5repack_ref.c in h5repack.dsp, h5repackdll.dsp, and h5repacktst.dsp. Tested: Visual Studio 6.0 on Windows XP Visual Studio 8.0 on Windows XP 64-bit
* [svn-r13249] Modified hdf5.dsp and hdf5dll.dsp to include H5Oshmesg.c which ↵Scott Wegner2007-02-061-6/+21
| | | | was added in revision 13246.
* [svn-r13131] UPdated windows project files because of the new files checked in.MuQun Yang2007-01-101-6/+21
|
* [svn-r13081] Updated libary project files.MuQun Yang2006-12-201-0/+30
| | | | | | test_cpp didn't pass compiling. C and Fortran are fine. Compilers: VS 6.0 Compaq Visual fortran 6.6c.
* [svn-r13077] HDF5 library project updates due to the adding of new source code.MuQun Yang2006-12-191-0/+15
|
* [svn-r13055] update library and DLL project files on windows.MuQun Yang2006-12-121-0/+60
| | | | All C tests get passed with VS6.0.
* [svn-r13018] H5Omessage.c has been added. Updated the windows project files.MuQun Yang2006-12-041-0/+15
|
* [svn-r13017] Update windows project files for hdf5 library.MuQun Yang2006-12-041-6/+21
| | | | Tested on windows vs 6.0.
* [svn-r12993] Update windows project files to reflect the recent library change.MuQun Yang2006-11-291-6/+21
|
* [svn-r12964] Update windows project files for the library.MuQun Yang2006-11-211-0/+30
| | | | | Update batch files for h5repack test,needs big efforts. Update batch file to test hdf5 library.
* [svn-r12944] Update windows project files for static libraryMuQun Yang2006-11-191-0/+64
|
* [svn-r12874] MuQun Yang2006-11-071-0/+15
|