1# Copyright (c) 2025 Authors under the MIT License.
2# See LICENSE.md for details.
3# SPDX-License-Identifier: MIT
5# copy dox/figures to html directory created by doxygen
7message(STATUS "Copying figures for cell_engineering module to html directory ${ADD_DOC_DIRECTORY}")
8add_custom_target(doxygen_copy_cell_engineering_figures
9 ${CMAKE_COMMAND} -E copy_directory
10 ${ADD_DOC_DIRECTORY}/figures ${PROJECT_BINARY_DIR}/html/doc/figures/
12add_dependencies(doc doxygen_copy_cell_engineering_figures)