diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-05-15 10:55:48 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-05-15 13:28:37 (GMT) |
commit | 2532e00339d34e36e90f78a28c3e4ce882f6fac0 (patch) | |
tree | 63f46ce9eb9469bcf5ba65359929da663c4e8c66 /Modules/FindDoxygen.cmake | |
parent | 4edc0ef359578ddaa7db0163e3a6097e12530c9b (diff) | |
download | CMake-2532e00339d34e36e90f78a28c3e4ce882f6fac0.zip CMake-2532e00339d34e36e90f78a28c3e4ce882f6fac0.tar.gz CMake-2532e00339d34e36e90f78a28c3e4ce882f6fac0.tar.bz2 |
FindDoxygen: Use ADDITIONAL_CLEAN_FILES for cleaning
Replace use of the deprecated `ADDITIONAL_MAKE_CLEAN_FILES` directory property
with the new `ADDITIONAL_CLEAN_FILES` directory property.
Diffstat (limited to 'Modules/FindDoxygen.cmake')
-rw-r--r-- | Modules/FindDoxygen.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindDoxygen.cmake b/Modules/FindDoxygen.cmake index 32b4aa2..ebd0b24 100644 --- a/Modules/FindDoxygen.cmake +++ b/Modules/FindDoxygen.cmake @@ -974,7 +974,7 @@ doxygen_add_docs() for target ${targetName}") "${DOXYGEN_OUTPUT_DIRECTORY}/${DOXYGEN_HTML_OUTPUT}") endif() set_property(DIRECTORY APPEND PROPERTY - ADDITIONAL_MAKE_CLEAN_FILES "${_args_clean_html_dir}") + ADDITIONAL_CLEAN_FILES "${_args_clean_html_dir}") endif() # Build up a list of files we can identify from the inputs so we can list |