Skip to content

Commit

Permalink
Doxygen.cmake: fix mixed up output dir
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewMasarik-NOAA committed Jan 25, 2024
1 parent 6f24840 commit ce15c51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake/Doxygen.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ function(Doxygen outDir)
endif()
set(DOXYGEN_GENERATE_HTML YES)
set(DOXYGEN_QUIET YES)
set(DOXYGEN_HTML_OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/${outDir})
set(DOXYGEN_HTML_OUTPUT ${CMAKE_BINARY_DIR}/${outDir})
doxygen_add_docs(doxygen
${CMAKE_CURRENT_SOURCE_DIR}/docs
COMMENT "Generate Doxygen HTML documenation"
COMMENT "Doxygen HTML output: ${CMAKE_BINARY_DIR}/${outDir}")
COMMENT "Generate Doxygen HTML documenation\n"
"Doxygen HTML output: ${CMAKE_BINARY_DIR}/${outDir}")
endfunction()

0 comments on commit ce15c51

Please sign in to comment.