diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-05-14 10:00:15 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-05-14 19:32:12 (GMT) |
commit | 4e2ce0a67ae3c4355c696b018da28e23853f991f (patch) | |
tree | a94968975fe8cd1158ceff9a4ad4c2babb882881 /Help/prop_dir | |
parent | 338994d65d35e08e5ac4c71eee662c1b38aee53a (diff) | |
download | CMake-4e2ce0a67ae3c4355c696b018da28e23853f991f.zip CMake-4e2ce0a67ae3c4355c696b018da28e23853f991f.tar.gz CMake-4e2ce0a67ae3c4355c696b018da28e23853f991f.tar.bz2 |
Doc: Update and deprecate ADDITIONAL_MAKE_CLEAN_FILES directory property
This extends the :prop_dir:`ADDITIONAL_MAKE_CLEAN_FILES` directory property
documentation and marks it as deprecated. The new directory property
:prop_dir:`ADDITIONAL_CLEAN_FILES` should be used instead.
Diffstat (limited to 'Help/prop_dir')
-rw-r--r-- | Help/prop_dir/ADDITIONAL_MAKE_CLEAN_FILES.rst | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/Help/prop_dir/ADDITIONAL_MAKE_CLEAN_FILES.rst b/Help/prop_dir/ADDITIONAL_MAKE_CLEAN_FILES.rst index 986ea5b..893a298 100644 --- a/Help/prop_dir/ADDITIONAL_MAKE_CLEAN_FILES.rst +++ b/Help/prop_dir/ADDITIONAL_MAKE_CLEAN_FILES.rst @@ -1,7 +1,17 @@ ADDITIONAL_MAKE_CLEAN_FILES --------------------------- -Additional files to clean during the make clean stage. +.. deprecated:: 3.15 -A list of files that will be cleaned as a part of the ``make clean`` -stage. + Use :prop_dir:`ADDITIONAL_CLEAN_FILES` instead. + +Additional files to remove during the clean stage. + +A :ref:`;-list <CMake Language Lists>` of files that will be removed as a +part of the ``make clean`` target. + +Arguments to :prop_dir:`ADDITIONAL_MAKE_CLEAN_FILES` may use +:manual:`generator expressions <cmake-generator-expressions(7)>`. + +This property only works for the the Makefile generators. +It is ignored on other generators. |