-
Notifications
You must be signed in to change notification settings - Fork 0
/
HFD5APISetupInstruction.txt
39 lines (26 loc) · 1.4 KB
/
HFD5APISetupInstruction.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
HDF5 API Installation:
Download HDF5 C++ API from:
http://www.hdfgroup.org/HDF5/release/obtain5.html
Visual Studio 2010 Configuration:
========================================================================
Using Visual Studio 2010 with HDF5 Libraries Built with Visual Studio 2010
========================================================================
1. Set up the path for external libraries and headers
The path settings will need to be in the project property sheets
per project. Go to "Project" and select "Properties", find
"Configuration Properties", and then "VC++ Directories".
1.1 If you are building on 64-bit Windows, find the "Platform" dropdown
and select "x64".
1.2 Add the header path to the "Include Directories" setting.
1.3 Add the library path to the "Library Directories" setting.
1.4 Select Linker->Input and beginning with the
"Additional Dependencies" line, enter the library names. The
external libraries should be listed first, followed by the HDF5
library, and then optionally the HDF5 High Level, Fortran, or C++
libraries. For example, to compile a C++ application, enter:
szip.lib
zlib.lib
hdf5.lib
hdf5_cpp.lib
Reference:
http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/release_docs/USING_HDF5_VS.txt