diff options
author | Brad King <brad.king@kitware.com> | 2021-02-08 17:33:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-02-08 17:34:15 (GMT) |
commit | 4841d38a7a9c48cff7e4edeb900005c04e64398a (patch) | |
tree | 5fc28cab90eb20eb4e2d86a44d285d65fd7db4d9 /Modules/MacroAddFileDependencies.cmake | |
parent | 777c14af82c23e9da0696eb9beecb7bca2d8ba45 (diff) | |
download | CMake-4841d38a7a9c48cff7e4edeb900005c04e64398a.zip CMake-4841d38a7a9c48cff7e4edeb900005c04e64398a.tar.gz CMake-4841d38a7a9c48cff7e4edeb900005c04e64398a.tar.bz2 |
MacroAddFileDependencies: Explicitly deprecate by documentation
This module has been discouraged since commit 1e20be319f (STYLE: add
documentation for MACRO_ADD_FILE_DEPENDENCIES(), 2009-07-14,
v2.8.0~433). It has been listed in the `cmake-modules(7)` manual
as deprecated since commit df780bcc01 (Help: Move deprecated modules to
appropriate section., 2018-11-12, v3.14.0-rc1~374^2). Add the explicit
deprecation mark in its documentation.
Diffstat (limited to 'Modules/MacroAddFileDependencies.cmake')
-rw-r--r-- | Modules/MacroAddFileDependencies.cmake | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/Modules/MacroAddFileDependencies.cmake b/Modules/MacroAddFileDependencies.cmake index c4374ee..8fdc264 100644 --- a/Modules/MacroAddFileDependencies.cmake +++ b/Modules/MacroAddFileDependencies.cmake @@ -5,15 +5,21 @@ MacroAddFileDependencies ------------------------ -MACRO_ADD_FILE_DEPENDENCIES(<_file> depend_files...) +.. deprecated:: 3.14 -Using the macro MACRO_ADD_FILE_DEPENDENCIES() is discouraged. There -are usually better ways to specify the correct dependencies. +:: + + MACRO_ADD_FILE_DEPENDENCIES(<source> <files>...) + +Do not use this command in new code. It is just a wrapper around: + +.. code-block:: cmake + + set_property(SOURCE <source> APPEND PROPERTY OBJECT_DEPENDS <files>...) + +Instead use the :command:`set_property` command to append to the +:prop_sf:`OBJECT_DEPENDS` source file property directly. -MACRO_ADD_FILE_DEPENDENCIES(<_file> depend_files...) is just a -convenience wrapper around the OBJECT_DEPENDS source file property. -You can just use set_property(SOURCE <file> APPEND PROPERTY -OBJECT_DEPENDS depend_files) instead. #]=======================================================================] macro (MACRO_ADD_FILE_DEPENDENCIES _file) |