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
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,8 +39,8 @@ for a list of changes since the latest release.
39
39
Brief description
40
40
---------------
41
41
42
-
A user-friendlyand object-oriented API for reading and writing JSON files, written in
43
-
modern Fortran. The source code is a single Fortran module file ([json_module.F90](https://github.com/jacobwilliams/json-fortran/blob/master/src/json_module.F90)).
42
+
A user-friendly, thread-safe, and object-oriented API for reading and writing [JSON](http://json.org) files, written in
43
+
modern Fortran.
44
44
45
45
[top](#json-fortran)
46
46
@@ -68,7 +68,7 @@ brew info json-fortran
68
68
brew install --with-unicode-support json-fortran
69
69
```
70
70
71
-
_Please note_, if you wish to support usage of json-fortran with
71
+
_Please note_, if you wish to support usage of JSON-Fortran with
72
72
multiple Fortran compilers, please follow the CMake installation
73
73
instructions below, as the homebrew installation is only intended to
74
74
support a single Fortran compiler. Cheers!
@@ -90,7 +90,7 @@ script) with the [NAG Fortran compiler 6.0](http://www.nag.com/nagware/NP/NP_des
90
90
Currently, several ways are provided to build the jsonfortran library
91
91
(libjsonfortran).
92
92
93
-
* A build script, `build.sh` is provided in the project root directory. This script uses [FoBiS](https://github.com/szaghi/FoBiS) to build the json-fortran library and the unit tests. Edit the script to use either the [Intel Fortran Compiler](https://software.intel.com/en-us/fortran-compilers) or [Gfortran](https://gcc.gnu.org/wiki/GFortran). Note that version 1.2.5 of FoBiS (or later) is required.
93
+
* A build script, `build.sh` is provided in the project root directory. This script uses [FoBiS](https://github.com/szaghi/FoBiS) to build the JSON-Fortran library and the unit tests. Edit the script to use either the [Intel Fortran Compiler](https://software.intel.com/en-us/fortran-compilers) or [Gfortran](https://gcc.gnu.org/wiki/GFortran). Note that version 1.2.5 of FoBiS (or later) is required.
94
94
95
95
* A [Visual Studio](https://www.visualstudio.com) project is included for building the library (and unit tests) on Windows with the Intel Fortran Compiler. The project has been tested with Visual Studio 2010 and 2013.
96
96
@@ -99,14 +99,14 @@ system is provided. This build system has been tested on Mac and Linux
99
99
using the Intel Fortran Compiler, gfortran 4.9, and NAG Fortran 6.0. It has not been
100
100
tested on Windows. This CMake based build provides an install target,
101
101
and exports from both the install location and the build location so
102
-
that building and using json-fortran in another CMake based project is
102
+
that building and using JSON-Fortran in another CMake based project is
103
103
trivial. To get started with the CMake based build, set the
104
104
environment variable `FC` to point to your Fortran compiler, and
105
105
create a build directory. Then `(cmake-gui|ccmake|cmake)
106
106
/path/to/json-fortran-root` to configure, `make` to build and `make
107
107
install` to optionally install. As long as the project is built with
108
108
CMake, other CMake projects can find it and link against it. For example,
109
-
if you have a second copy of the json-fortran project tree, and want to build the unit tests
109
+
if you have a second copy of the JSON-Fortran project tree, and want to build the unit tests
110
110
linking against those compiled/installed by the first copy:
111
111
112
112
```CMake
@@ -153,14 +153,14 @@ Want to help? Take a quick look at our [contributing guidelines](https://github
153
153
154
154
License
155
155
--------
156
-
The json-fortran source code and related files and documentation are distributed under a permissive free software license (BSD-style). See the [LICENSE](https://raw.githubusercontent.com/jacobwilliams/json-fortran/master/LICENSE) file for more details.
156
+
The JSON-Fortran source code and related files and documentation are distributed under a permissive free software license (BSD-style). See the [LICENSE](https://raw.githubusercontent.com/jacobwilliams/json-fortran/master/LICENSE) file for more details.
157
157
158
158
[top](#json-fortran)
159
159
160
160
Miscellaneous
161
161
---------------
162
162
163
-
*This code is a fork and extensive upgrade of the Fortran 95 [FSON](https://github.com/josephalevin/fson) code. The reason for the split was to be able to incorporate object-oriented and other nice features of the Fortran 2003 and 2008 standards. Many thanks to the original authors of FSON.
163
+
*JSON-Fortran is a fork and extensive upgrade of the Fortran 95 [FSON](https://github.com/josephalevin/fson) code. The reason for the split was to be able to incorporate object-oriented and other nice features of the Fortran 2003 and 2008 standards. Many thanks to the original authors of FSON.
164
164
* For more information about JSON, see: <http://www.json.org/>
165
165
*[json-fortran on Travis CI](https://travis-ci.org/jacobwilliams/json-fortran)
166
166
*[json-fortran on Waffle.IO](https://waffle.io/jacobwilliams/json-fortran)
0 commit comments