diff options
author | Peter Wu <peter@lekensteyn.nl> | 2020-05-27 22:36:22 +0200 |
---|---|---|
committer | Peter Wu <peter@lekensteyn.nl> | 2020-05-28 10:46:07 +0200 |
commit | 3a2ca60d6a7540d631df90807275da0ff25eca04 (patch) | |
tree | 196727c4a299d97b41377a007d9a029cc35d2393 /CMakeLists.txt | |
parent | 155551c4465485dc4e754b0056f57cffcd925a94 (diff) | |
download | curl-3a2ca60d6a7540d631df90807275da0ff25eca04.tar.gz |
CMake: rebuild Makefile.inc.cmake when Makefile.inc changes
Otherwise the build might fail due to missing source files, as
demonstrated by the recent keylog.c addition on an existing build dir.
Closes #5469
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a311e1259..a13395db7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1268,7 +1268,7 @@ function(transform_makefile_inc INPUT_FILE OUTPUT_FILE) string(REGEX REPLACE "\\$\\(([a-zA-Z_][a-zA-Z0-9_]*)\\)" "\${\\1}" MAKEFILE_INC_TEXT ${MAKEFILE_INC_TEXT}) # Replace $() with ${} string(REGEX REPLACE "@([a-zA-Z_][a-zA-Z0-9_]*)@" "\${\\1}" MAKEFILE_INC_TEXT ${MAKEFILE_INC_TEXT}) # Replace @@ with ${}, even if that may not be read by CMake scripts. file(WRITE ${OUTPUT_FILE} ${MAKEFILE_INC_TEXT}) - + set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${INPUT_FILE}") endfunction() include(GNUInstallDirs) |