You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-24Lines changed: 15 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,6 @@ The two external dependancies not included are:
17
17
[gnuplot](http://www.gnuplot.info/download.html), gnuplot is required to run the executable and should be installed and the gnuplot executable available in the system path.
18
18
19
19
And [HDF5](https://support.hdfgroup.org/ftp/HDF5/current/src/), this should be installed and the HDF5_ROOT environment variable defined.
20
-
21
20
### HDF5
22
21
#### Windows
23
22
HDF5 can be installed for windows 10 64bit windows using a precompiled installer available [here](https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.12/hdf5-1.12.1/bin/windows/hdf5-1.12.1-Std-win10_64-vs14.zip)
@@ -27,19 +26,16 @@ Or by compiling it using the [source code](https://www.hdfgroup.org/downloads/hd
27
26
The HDF5_ROOT should then be set to the installation directory eg.:`C:\Program Files (x86)\HDF_Group\HDF5\1.12.1`
28
27
29
28
** Note: The architecture of your compiler should match the installation of HDF5.
30
-
31
29
#### Linux
32
30
HDF5 can be install on linux through APT:
33
31
```
34
-
sudo apt=get install libhdf5-dev
32
+
sudo apt-get install libhdf5-dev
35
33
```
36
-
37
34
#### Mac OS
38
35
HDF5 can be installed on mac using homebrew:
39
36
```
40
37
brew install hdf5
41
38
```
42
-
43
39
### gnuplot
44
40
gnuplot can be installed using the following commands:
45
41
@@ -48,27 +44,22 @@ gnuplot can be installed on windows using chocolatey:
48
44
```
49
45
choco install gnuplot
50
46
```
51
-
52
47
#### Linux
53
48
gnuplot can be installed on linux using apt:
54
49
```
55
50
sudo apt-get install gnuplot
56
51
```
57
-
58
52
#### Mac OS
59
53
gnuplot can be installed on mac using homebrew:
60
54
```
61
55
brew install gnuplot
62
56
```
63
-
64
57
## Compiling
65
58
Compile the executable by running:
66
-
67
59
```
68
60
$ cmake -Bbuild
69
61
$ cmake --build build
70
62
```
71
-
72
63
**Important** For multi-config compilers such as Visual Studio xcode or ninja the config type needs to be set to `Release` otherwise the API will not build for example:
0 commit comments