diff options
author | Brad King <brad.king@kitware.com> | 2020-12-08 15:19:54 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-12-08 15:20:12 (GMT) |
commit | c4feb00aa540f12617ee4dccf1d5c3b8fbe47822 (patch) | |
tree | 06c1b20375475886a6fff4ff7ad8bcb21f127514 | |
parent | c4fe3d00b5e8f36eac514a4c8465a184383c1ed0 (diff) | |
parent | cf0c71dae3009a75e08c91eb5d3138ffd488f7db (diff) | |
download | CMake-c4feb00aa540f12617ee4dccf1d5c3b8fbe47822.zip CMake-c4feb00aa540f12617ee4dccf1d5c3b8fbe47822.tar.gz CMake-c4feb00aa540f12617ee4dccf1d5c3b8fbe47822.tar.bz2 |
Merge topic 'update_cmp112'
cf0c71dae3 Document CMP0112 covers $<TARGET_FILE_NAME,tgt>
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5582
-rw-r--r-- | Help/manual/cmake-generator-expressions.7.rst | 3 | ||||
-rw-r--r-- | Help/policy/CMP0112.rst | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Help/manual/cmake-generator-expressions.7.rst b/Help/manual/cmake-generator-expressions.7.rst index ff9d1bf..482b14e 100644 --- a/Help/manual/cmake-generator-expressions.7.rst +++ b/Help/manual/cmake-generator-expressions.7.rst @@ -648,6 +648,9 @@ which is just the string ``tgt``. expression is evaluated on. ``$<TARGET_FILE_NAME:tgt>`` The ``tgt`` filename. + + Note that ``tgt`` is not added as a dependency of the target this + expression is evaluated on (see policy :policy:`CMP0112`). ``$<TARGET_FILE_DIR:tgt>`` Directory of the ``tgt`` binary file. diff --git a/Help/policy/CMP0112.rst b/Help/policy/CMP0112.rst index 78a9055..313a51e 100644 --- a/Help/policy/CMP0112.rst +++ b/Help/policy/CMP0112.rst @@ -8,6 +8,7 @@ Target file component generator expressions do not add target dependencies. The following target-based generator expressions that query for directory or file name components no longer add a dependency on the evaluated target. + - ``TARGET_FILE_NAME`` - ``TARGET_FILE_DIR`` - ``TARGET_LINKER_FILE_BASE_NAME`` - ``TARGET_LINKER_FILE_NAME`` |