Skip to content

Commit baa4f7c

Browse files
committed
Merge pull request #102 from zbeekman/README-toc
Readme toc
2 parents ad6c39a + 54862b3 commit baa4f7c

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

README.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@ json-fortran [![GitHub release](https://img.shields.io/github/release/jacobwilli
33

44
A Fortran 2008 JSON API
55

6+
<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc/generate-toc again -->
7+
**Table of Contents**
8+
9+
- [json-fortran [![GitHub release](https://img.shields.io/github/release/jacobwilliams/json-fortran.svg?style=plastic)](https://github.com/jacobwilliams/json-fortran/releases/latest)](#json-fortran-github-releasehttpsimgshieldsiogithubreleasejacobwilliamsjson-fortransvgstyleplastichttpsgithubcomjacobwilliamsjson-fortranreleaseslatest)
10+
- [Status](#status)
11+
- [Brief description](#brief-description)
12+
- [Download [![GitHub release](https://img.shields.io/github/release/jacobwilliams/json-fortran.svg?style=plastic)](https://github.com/jacobwilliams/json-fortran/releases)](#download-github-releasehttpsimgshieldsiogithubreleasejacobwilliamsjson-fortransvgstyleplastichttpsgithubcomjacobwilliamsjson-fortranreleases)
13+
- [Building the library](#building-the-library)
14+
- [Reading JSON from a file](#reading-json-from-a-file)
15+
- [Reading JSON from a string](#reading-json-from-a-string)
16+
- [Modifying variables in a JSON file](#modifying-variables-in-a-json-file)
17+
- [Writing a JSON file](#writing-a-json-file)
18+
- [Building a JSON file from scratch](#building-a-json-file-from-scratch)
19+
- [Documentation](#documentation)
20+
- [Contributing [![Ready in backlog](https://badge.waffle.io/jacobwilliams/json-fortran.png?label=Ready&title=Ready)](CONTRIBUTING.md)](#contributing-ready-in-backloghttpsbadgewaffleiojacobwilliamsjson-fortranpnglabelreadytitlereadycontributingmd)
21+
- [License](#license)
22+
- [Miscellaneous](#miscellaneous)
23+
24+
<!-- markdown-toc end -->
25+
26+
627
Status
728
------
829
[![Build Status](https://img.shields.io/travis/jacobwilliams/json-fortran/master.svg?style=plastic)](https://travis-ci.org/jacobwilliams/json-fortran)
@@ -32,7 +53,9 @@ various Fortran 2003 and Fortran 2008 features such as: allocatable
3253
strings, `newunit`, `generic`, `class`, and `abstract interface`.
3354
It has been successfully compiled with the [Intel Fortran compiler
3455
13.1.0](https://software.intel.com/en-us/non-commercial-software-development) (and greater) and the recent [4.9 release of the GNU gfortran
35-
compiler](http://gcc.gnu.org/wiki/GFortran/News#GCC4.9).
56+
compiler](http://gcc.gnu.org/wiki/GFortran/News#GCC4.9). It has also
57+
been reported that the library can be built (using the CMake build
58+
script) with the [NAG Fortran compiler 6.0](http://www.nag.com/nagware/NP/NP_desc.asp)
3659

3760
Currently, several ways are provided to build the jsonfortran library
3861
(libjsonfortran).
@@ -64,6 +87,7 @@ enable_language ( Fortran )
6487
project ( jf_test NONE )
6588
6689
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 4.1.0 REQUIRED )
90+
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
6791
6892
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.f90" )
6993
foreach ( UNIT_TEST ${JF_TEST_SRCS} )

0 commit comments

Comments
 (0)