-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds fortran wrappers to libyaml, enabled via the -Duse_yaml macro Adds unit test to test if the parser is working/crashing as expected Adds an option, --with-yaml to autotools that checks that the environment is set up correctly and adds the -Duse_yaml macro to your compilation. Implements the parser to read data_table.yaml and tests this using an ongrid data_override test
- Loading branch information
1 parent
474e15a
commit 90583ae
Showing
19 changed files
with
1,953 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ SUBDIRS = \ | |
fms2_io \ | ||
mosaic2 \ | ||
fms \ | ||
parser \ | ||
affinity \ | ||
mosaic \ | ||
time_manager \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,6 +114,10 @@ | |
* | ||
*/ | ||
|
||
/** @defgroup parser Parser | ||
* | ||
*/ | ||
|
||
/** @defgroup platform Platform | ||
* | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#*********************************************************************** | ||
#* GNU Lesser General Public License | ||
#* | ||
#* This file is part of the GFDL Flexible Modeling System (FMS). | ||
#* | ||
#* FMS is free software: you can redistribute it and/or modify it under | ||
#* the terms of the GNU Lesser General Public License as published by | ||
#* the Free Software Foundation, either version 3 of the License, or (at | ||
#* your option) any later version. | ||
#* | ||
#* FMS is distributed in the hope that it will be useful, but WITHOUT | ||
#* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
#* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
#* for more details. | ||
#* | ||
#* You should have received a copy of the GNU Lesser General Public | ||
#* License along with FMS. If not, see <http://www.gnu.org/licenses/>. | ||
#*********************************************************************** | ||
|
||
# This is an automake file for the constants directory of the FMS | ||
# package. | ||
|
||
# Ed Hartnett 2/22/19 | ||
|
||
# Include .h and .mod files. | ||
AM_CPPFLAGS = -I$(top_srcdir)/include | ||
AM_FCFLAGS = $(FC_MODINC). $(FC_MODOUT)$(MODDIR) | ||
|
||
# Build this uninstalled convenience library. | ||
noinst_LTLIBRARIES = libparser.la | ||
|
||
# The convenience library depends on its source. | ||
libparser_la_SOURCES = \ | ||
yaml_parser.F90 \ | ||
yaml_parser_binding.c | ||
|
||
MODFILES = \ | ||
yaml_parser_mod.$(FC_MODEXT) | ||
BUILT_SOURCES = $(MODFILES) | ||
nodist_include_HEADERS = $(MODFILES) | ||
|
||
include $(top_srcdir)/mkmods.mk |
Oops, something went wrong.