Files
libssh/doc/CMakeLists.txt
Andreas Schneider b5af3e74d7 cmake: Use FindDoxygen package provided by cmake
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
(cherry picked from commit a154bd9f22)
2018-08-22 09:09:10 +02:00

10 lines
156 B
CMake

#
# Build the documentation
#
find_package(Doxygen)
if (DOXYGEN_FOUND)
doxygen_add_docs(docs
${CMAKE_CURRENT_SOURCE_DIR})
endif()