mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-26 01:03:15 +03:00
10 lines
156 B
CMake
10 lines
156 B
CMake
#
|
|
# Build the documentation
|
|
#
|
|
find_package(Doxygen)
|
|
|
|
if (DOXYGEN_FOUND)
|
|
doxygen_add_docs(docs
|
|
${CMAKE_CURRENT_SOURCE_DIR})
|
|
endif()
|