Add doxygen target to cmake

This commit is contained in:
Stanislav Ershov 2018-10-18 19:18:21 +03:00
parent 8b5f81a218
commit 7499968f84
1 changed files with 13 additions and 0 deletions

View File

@ -73,6 +73,19 @@ if (CCACHE)
endif()
option(BUILD_DOC "Build documentation" OFF)
if(BUILD_DOC)
find_package(Doxygen)
if(DOXYGEN_FOUND)
add_custom_target( doc_doxygen ALL
COMMAND ${DOXYGEN_EXECUTABLE} ${PROJECT_SOURCE_DIR}/Doxyfile
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
COMMENT "Generating API documentation with Doxygen"
VERBATIM )
endif()
endif()
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
add_subdirectory(Telegram)