if(NOT SPHINX_FOUND)
  return()
endif()

add_custom_target(tutorials ALL
                  COMMAND "${SPHINX_EXECUTABLE}" -b html -a -d "${SPHINX_CACHE_DIR}" -D html_file_suffix=".${SPHINX_HTML_FILE_SUFFIX}" "${CMAKE_CURRENT_SOURCE_DIR}/content" html)
add_dependencies(tutorials doc)
set_target_properties(tutorials PROPERTIES FOLDER "Documentation (Tutorials)")
install(DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/html"
        DESTINATION "${DOC_INSTALL_DIR}/tutorials"
        COMPONENT doc)
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/content/sources"
        DESTINATION "${DOC_INSTALL_DIR}/tutorials"
        COMPONENT doc)
