CMakeLists.txt 1.75 KB
Newer Older
1
# ******************************************************************************
2
# Copyright 2017-2020 Intel Corporation
3
#
4 5 6 7 8 9 10 11 12 13 14
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
15
# ******************************************************************************
16

L.S. Cook's avatar
L.S. Cook committed
17
find_package(Doxygen REQUIRED)
18 19
# include(FetchContent)
# include(${CMAKE_SOURCE_DIR}/cmake/doxygen.cmake)
L.S. Cook's avatar
L.S. Cook committed
20

21
if (NGRAPH_DOXYGEN_WARN_IF_UNDOCUMENTED)
L.S. Cook's avatar
L.S. Cook committed
22 23 24 25
    set(DOXYGEN_WARN_IF_UNDOCUMENTED YES)
else()
    set(DOXYGEN_WARN_IF_UNDOCUMENTED NO)
endif()
26

27
if (NGRAPH_DOXYGEN_QUIET)
L.S. Cook's avatar
L.S. Cook committed
28 29 30
    set(DOXYGEN_QUIET YES)
else()
    set(DOXYGEN_QUIET NO)
31 32
endif()

L.S. Cook's avatar
L.S. Cook committed
33 34 35 36 37 38 39 40 41 42 43
set(DOXYGEN_IN "${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in")
set(DOXYGEN_OUT "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile")
configure_file("${DOXYGEN_IN}" "${DOXYGEN_OUT}" @ONLY)

add_custom_target(doxygen-docs
    ALL
    COMMAND "${DOXYGEN_EXECUTABLE}" "${DOXYGEN_OUT}"
    WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
    COMMENT "Generating documentation with Doxygen"
    VERBATIM )

44
add_dependencies(docs doxygen-docs)
L.S. Cook's avatar
L.S. Cook committed
45 46 47 48 49 50 51 52 53 54 55 56

install(
    DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/html/"
    DESTINATION "${NGRAPH_INSTALL_DOC}/api-reference/html"
    OPTIONAL
    )

install(
    DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/latex/"
    DESTINATION "${NGRAPH_INSTALL_DOC}/api-reference/latex"
    OPTIONAL
    )