13 lines
348 B
CMake
13 lines
348 B
CMake
include (VCIDoxygen)
|
|
|
|
IF (DOXYGEN_FOUND)
|
|
|
|
# Add a documentation install target
|
|
vci_create_doc_target(doc-install)
|
|
|
|
if (TARGET doc-install)
|
|
vci_copy_after_build (doc-install "${CMAKE_BINARY_DIR}/Build/${VCI_PROJECT_DATADIR}/Doc/html" "${CMAKE_INSTALL_PREFIX}/${VCI_PROJECT_DATADIR}/doc/html")
|
|
endif()
|
|
|
|
ENDIF(DOXYGEN_FOUND)
|