From b5be41e86f65a480bd2601ad8e2aa7c8b667ea7a Mon Sep 17 00:00:00 2001 From: Andrey Debolskiy <and.debol@gmail.com> Date: Fri, 21 Feb 2025 03:40:49 +0300 Subject: [PATCH] fixed erronious copy for library and doxygen config --- CMakeLists.txt | 4 ++-- doxygen/config | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 954ec6f..4c44862 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -260,10 +260,10 @@ endif() add_custom_command( TARGET sfx POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory - ${CMAKE_SOURCE_DIR}/data + ${CMAKE_CURRENT_SOURCE_DIR}/data ${CMAKE_CURRENT_BINARY_DIR}/data) add_custom_command( TARGET sfx POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory - ${CMAKE_SOURCE_DIR}/config-ex + ${CMAKE_CURRENT_SOURCE_DIR}/config-ex ${CMAKE_CURRENT_BINARY_DIR}/config-ex) diff --git a/doxygen/config b/doxygen/config index 047600a..085ab23 100644 --- a/doxygen/config +++ b/doxygen/config @@ -950,7 +950,7 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = ../srcC ../includeCXX ../srcCXX ../includeCU ../srcCU ../includeF ../srcF - +INPUT+=../README.md # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # libiconv (or the iconv built into libc) for the transcoding. See the libiconv @@ -1169,7 +1169,7 @@ FILTER_SOURCE_PATTERNS = # (index.html). This can be useful if you have a project on for instance GitHub # and want to reuse the introduction page also for the doxygen output. -USE_MDFILE_AS_MAINPAGE = +USE_MDFILE_AS_MAINPAGE = ../README.md # The Fortran standard specifies that for fixed formatted Fortran code all # characters from position 72 are to be considered as comment. A common -- GitLab