mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-07 02:39:48 +09: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()
|