diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2018-11-03 18:39:42 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2018-11-07 20:47:21 (GMT) |
commit | fdcd559a8ea7748e662c40a0a4a34905611bf238 (patch) | |
tree | cb8bc5bf0c0e4a9814f328aebaa1a51aa639d95c /Help/release/dev | |
parent | 9fc20a4f3e1865e409d960c87e2e4a366775b72b (diff) | |
download | CMake-fdcd559a8ea7748e662c40a0a4a34905611bf238.zip CMake-fdcd559a8ea7748e662c40a0a4a34905611bf238.tar.gz CMake-fdcd559a8ea7748e662c40a0a4a34905611bf238.tar.bz2 |
Help: Add documentation and release notes for install
This change adds documentation for the new DESTINATION behavior of
the install() command.
Diffstat (limited to 'Help/release/dev')
-rw-r--r-- | Help/release/dev/install-defaults.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Help/release/dev/install-defaults.rst b/Help/release/dev/install-defaults.rst new file mode 100644 index 0000000..4f31b7e --- /dev/null +++ b/Help/release/dev/install-defaults.rst @@ -0,0 +1,12 @@ +install-defaults +---------------- + +* The ``TARGETS`` variant of the :command:`install` command learned how to + install to an appropriate default directory for a given target type, based + on variables from the :module:`GNUInstallDirs` module and built-in defaults, + in lieu of a ``DESTINATION`` argument. +* The ``FILES`` and ``DIRECTORY`` variants of the :command:`install` command + learned a new set of parameters for installing files as a file type, setting + the destination based on the appropriate variables from + :module:`GNUInstallDirs` and built-in defaults, in lieu of a ``DESTINATION`` + argument. |