-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add doxygen to the cmake build and add doxygen build to CI. (#759)
Add doxygen to the cmake build and add doxygen build to CI.
- Loading branch information
1 parent
68980ad
commit 53a3c52
Showing
5 changed files
with
2,716 additions
and
10 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
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.