Warning, /graphics/digikam/core/cmake/rules/RulesDoxygen.cmake is written in an unsupported language. File is not indexed.

0001 #
0002 # SPDX-FileCopyrightText: 2010-2024 by Gilles Caulier, <caulier dot gilles at gmail dot com>
0003 #
0004 # SPDX-License-Identifier: BSD-3-Clause
0005 #
0006 
0007 if(Doxygen_FOUND)
0008 
0009     message(STATUS "Doxygen is found.......................... ${Doxygen_FOUND}")
0010     message(STATUS "Graphviz Dot is found..................... ${DOXYGEN_DOT_FOUND}")
0011 
0012     if(Doxygen_FOUND AND DOXYGEN_DOT_FOUND)
0013 
0014         message(STATUS "To build API documentation use 'make doc'")
0015 
0016         add_custom_target(doc ${DOXYGEN_EXECUTABLE}
0017                           WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
0018 
0019     endif()
0020 
0021 endif()