diff --git a/cmake-modules/AzureDoxygen.cmake b/cmake-modules/AzureDoxygen.cmake index def89ad54..1f82847d8 100644 --- a/cmake-modules/AzureDoxygen.cmake +++ b/cmake-modules/AzureDoxygen.cmake @@ -18,7 +18,9 @@ function(generate_documentation PROJECT_NAME PROJECT_VERSION) set(DOXYGEN_LAYOUT_FILE ${CMAKE_SOURCE_DIR}/eng/docs/api/assets/DoxygenLayout.xml) set(DOXYGEN_RECURSIVE YES) set(DOXYGEN_USE_MDFILE_AS_MAINPAGE ./README.md) - set(DOXYGEN_INLINE_SOURCES YES) + # Setting the INLINE_SOURCES tag to YES will include the body of functions, + # classes and enums directly into the documentation. + set(DOXYGEN_INLINE_SOURCES NO) # Skip generating docs for json, test and private files. set(DOXYGEN_EXCLUDE_PATTERNS json.hpp