summaryrefslogtreecommitdiffstats
path: root/libversion
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-01-06 17:00:41 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-01-06 17:00:41 (GMT)
commitde30df322c5b8c01133a008822c691959ebf93a4 (patch)
tree4d9c26ff26b0afd75f1fd43b576e1573c42e5fa7 /libversion
parentd6ab8a10db09394f2e8368b6f4e787910481f91c (diff)
downloadDoxygen-de30df322c5b8c01133a008822c691959ebf93a4.zip
Doxygen-de30df322c5b8c01133a008822c691959ebf93a4.tar.gz
Doxygen-de30df322c5b8c01133a008822c691959ebf93a4.tar.bz2
Correction behavior of make clean in respect to version files
I case we ran `make clean` it was not possible anymore to generate doxygen as the generated file `generated_src/gitversion.cpp` was not present any more and it was not re-generated. The generation of the `generated_src/gitversion.cpp` depends on teh `generated_src/git_state` file and this file was still present. This has been corrected.
Diffstat (limited to 'libversion')
-rw-r--r--libversion/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/libversion/CMakeLists.txt b/libversion/CMakeLists.txt
index 34e8655..6952cea 100644
--- a/libversion/CMakeLists.txt
+++ b/libversion/CMakeLists.txt
@@ -7,6 +7,7 @@ set(POST_CONFIGURE_DOXYGEN_VERSION_FILE "${GENERATED_SRC}/doxyversion.cpp")
# setup information for git version handling
set(PRE_CONFIGURE_GIT_VERSION_FILE "${CMAKE_SOURCE_DIR}/libversion/gitversion.cpp.in")
set(POST_CONFIGURE_GIT_VERSION_FILE "${GENERATED_SRC}/gitversion.cpp")
+set(GIT_STATE_FILE "${GENERATED_SRC}/git_state")
include(${CMAKE_SOURCE_DIR}/cmake/git_watcher.cmake)
include(${CMAKE_SOURCE_DIR}/cmake/doxygen_version.cmake)
@@ -25,3 +26,4 @@ add_dependencies( doxygen_version check_doxygen_version )
set_source_files_properties(${POST_CONFIGURE_GIT_VERSION_FILE} PROPERTIES GENERATED 1)
set_source_files_properties(${POST_CONFIGURE_DOXYGEN_VERSION_FILE} PROPERTIES GENERATED 1)
+set_source_files_properties(${GIT_STATE_FILE} PROPERTIES GENERATED 1)