summaryrefslogtreecommitdiffstats
path: root/Help/prop_tgt
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-06-05 14:26:27 (GMT)
committerCraig Scott <craig.scott@crascit.com>2019-06-07 11:10:19 (GMT)
commite61074c67226e3def13e75173e3b8bbdb1c3df2d (patch)
tree12751d884005e3afe5e47402aea33589d09a251b /Help/prop_tgt
parentcebccdebaf12adc83c50f418c51b2d6b989d5350 (diff)
downloadCMake-e61074c67226e3def13e75173e3b8bbdb1c3df2d.zip
CMake-e61074c67226e3def13e75173e3b8bbdb1c3df2d.tar.gz
CMake-e61074c67226e3def13e75173e3b8bbdb1c3df2d.tar.bz2
Help: Improve ADDITIONAL_CLEAN_FILES documentation
Extend the `ADDITIONAL_CLEAN_FILES' target and directory property documentation. Fixes: #19341
Diffstat (limited to 'Help/prop_tgt')
-rw-r--r--Help/prop_tgt/ADDITIONAL_CLEAN_FILES.rst17
1 files changed, 12 insertions, 5 deletions
diff --git a/Help/prop_tgt/ADDITIONAL_CLEAN_FILES.rst b/Help/prop_tgt/ADDITIONAL_CLEAN_FILES.rst
index 856bb38..3b9d965 100644
--- a/Help/prop_tgt/ADDITIONAL_CLEAN_FILES.rst
+++ b/Help/prop_tgt/ADDITIONAL_CLEAN_FILES.rst
@@ -1,16 +1,23 @@
ADDITIONAL_CLEAN_FILES
----------------------
-Additional files to remove during the clean stage.
+A :ref:`;-list <CMake Language Lists>` of files or directories that will be
+removed as a part of the global ``clean`` target. It can be used to specify
+files and directories that are generated as part of building the target or
+that are directly associated with the target in some way (e.g. created as a
+result of running the target).
-A :ref:`;-list <CMake Language Lists>` of files that will be removed as a
-part of the ``clean`` target.
+For custom targets, if such files can be captured as outputs or byproducts
+instead, then that should be preferred over adding them to this property.
+If an additional clean file is used by multiple targets or isn't
+target-specific, then the :prop_dir:`ADDITIONAL_CLEAN_FILES` directory
+property may be the more appropriate property to use.
Relative paths are allowed and are interpreted relative to the
current binary directory.
-Arguments to :prop_tgt:`ADDITIONAL_CLEAN_FILES` may use
+Contents of ``ADDITIONAL_CLEAN_FILES`` may use
:manual:`generator expressions <cmake-generator-expressions(7)>`.
This property only works for the :generator:`Ninja` and the Makefile
-generators. It is ignored on other generators.
+generators. It is ignored by other generators.