-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'NOAA-EMC:develop' into nssl_mp_init
- Loading branch information
Showing
10 changed files
with
2,980 additions
and
110 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
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
Submodule atmos_cubed_sphere
updated
9 files
+5 −15 | driver/fvGFS/atmosphere.F90 | |
+6 −1 | model/fv_arrays.F90 | |
+21 −1 | model/fv_control.F90 | |
+3 −13 | model/molecular_diffusion.F90 | |
+7 −17 | model/multi_gases.F90 | |
+6 −2 | tools/fv_grid_tools.F90 | |
+3 −3 | tools/fv_iau_mod.F90 | |
+0 −2 | tools/fv_restart.F90 | |
+1 −1 | tools/test_cases.F90 |
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,17 @@ | ||
# This is the CMake file for building the docs directory of fv3atm. | ||
# | ||
# Ed Hartnett 12/28/23 | ||
|
||
IF(ENABLE_DOCS) | ||
|
||
# Create doxyfile. | ||
SET(abs_top_srcdir "${CMAKE_SOURCE_DIR}") | ||
SET(abs_top_builddir "${CMAKE_BINARY_DIR}") | ||
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) | ||
ADD_CUSTOM_TARGET(doxygen_doc ALL | ||
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} | ||
COMMENT "Generating API Documentation with Doxygen" VERBATIM) | ||
|
||
ENDIF(ENABLE_DOCS) | ||
|
Oops, something went wrong.