1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-26 01:03:15 +03:00
Files
libssh/doc/CMakeLists.txt
Andreas Schneider a154bd9f22 cmake: Use FindDoxygen package provided by cmake
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
2018-08-22 09:08:39 +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()