Add doxygen documentation #4

Merged
CHatingPython merged 10 commits from docs into master 2026-06-02 12:01:39 +00:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit ece2df477a - Show all commits
+1 -1
View File
@@ -57,7 +57,7 @@ BreakArrays: false
IncludeBlocks: Regroup IncludeBlocks: Regroup
SortIncludes: true SortIncludes: true
ReflowComments: false ReflowComments: Always
KeepEmptyLinesAtTheStartOfBlocks: true KeepEmptyLinesAtTheStartOfBlocks: true
DerivePointerAlignment: false DerivePointerAlignment: false
+4
View File
@@ -13,6 +13,10 @@ add_subdirectory(furc)
if(DOXYGEN_FOUND) if(DOXYGEN_FOUND)
set(DOXYGEN_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/docs) set(DOXYGEN_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/docs)
set(DOXYGEN_SHOW_ENUM_VALUES YES)
set(DOXYGEN_HIDE_UNDOC_NAMESPACES NO)
set(DOXYGEN_HIDE_UNDOC_RELATIONS NO)
set(DOXYGEN_FILE_PATTERNS "*.hpp")
doxygen_add_docs(doxygen_doc ${CMAKE_SOURCE_DIR}/furc/ ${CMAKE_SOURCE_DIR}/furlang/ doxygen_add_docs(doxygen_doc ${CMAKE_SOURCE_DIR}/furc/ ${CMAKE_SOURCE_DIR}/furlang/
ALL WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} ALL WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Doxygen") COMMENT "Generating API documentation with Doxygen")