diff options
author | Asit Dhal <dhal.asitk@gmail.com> | 2021-01-13 10:27:56 (GMT) |
---|---|---|
committer | Asit Dhal <dhal.asitk@gmail.com> | 2021-01-13 10:27:56 (GMT) |
commit | ac3ccc393e359063f498a33696c1785672a28d40 (patch) | |
tree | cad769c4ccc1c466d2994dc8c7a571cdb39fbbf5 /Help | |
parent | 20a7d4485cb3f6520abc22d22fd516a19e4cfdb2 (diff) | |
download | CMake-ac3ccc393e359063f498a33696c1785672a28d40.zip CMake-ac3ccc393e359063f498a33696c1785672a28d40.tar.gz CMake-ac3ccc393e359063f498a33696c1785672a28d40.tar.bz2 |
install(files): Support genex in rename option
Fixes: #19903
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/install.rst | 5 | ||||
-rw-r--r-- | Help/release/dev/install-files-rename-genex.rst | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Help/command/install.rst b/Help/command/install.rst index bd8da39..35207f4 100644 --- a/Help/command/install.rst +++ b/Help/command/install.rst @@ -473,6 +473,11 @@ this advice while installing headers to a project-specific subdirectory: use "generator expressions" with the syntax ``$<...>``. See the :manual:`cmake-generator-expressions(7)` manual for available expressions. +.. versionadded:: 3.20 + An install rename given as a ``RENAME`` argument may + use "generator expressions" with the syntax ``$<...>``. See the + :manual:`cmake-generator-expressions(7)` manual for available expressions. + Installing Directories ^^^^^^^^^^^^^^^^^^^^^^ diff --git a/Help/release/dev/install-files-rename-genex.rst b/Help/release/dev/install-files-rename-genex.rst new file mode 100644 index 0000000..f735e24 --- /dev/null +++ b/Help/release/dev/install-files-rename-genex.rst @@ -0,0 +1,5 @@ +install-files-rename-genex +-------------------------- + +* The :command:`install(FILES)` command ``RENAME`` option learned to + support :manual:`generator expressions <cmake-generator-expressions(7)>`. |