diff options
author | Brad King <brad.king@kitware.com> | 2016-08-02 13:11:52 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-08-02 13:11:52 (GMT) |
commit | fd59f9ad519c1c311c54569133797d9061e90558 (patch) | |
tree | 32eaa9d698f80d1b959e46d9c4411cfea90510db | |
parent | 55d9bfa9dd42912432eea3297507187084a7d154 (diff) | |
parent | bdd9b1c73c8c43e45561a000cb9f5c61349528b7 (diff) | |
download | CMake-fd59f9ad519c1c311c54569133797d9061e90558.zip CMake-fd59f9ad519c1c311c54569133797d9061e90558.tar.gz CMake-fd59f9ad519c1c311c54569133797d9061e90558.tar.bz2 |
Merge topic 'doc-CMAKE_INSTALL_PREFIX-default'
bdd9b1c7 Help: Fix CMAKE_INSTALL_PREFIX documented default on Windows
-rw-r--r-- | Help/variable/CMAKE_INSTALL_PREFIX.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/variable/CMAKE_INSTALL_PREFIX.rst b/Help/variable/CMAKE_INSTALL_PREFIX.rst index 3f3347f..86f1944 100644 --- a/Help/variable/CMAKE_INSTALL_PREFIX.rst +++ b/Help/variable/CMAKE_INSTALL_PREFIX.rst @@ -5,7 +5,7 @@ Install directory used by :command:`install`. If ``make install`` is invoked or ``INSTALL`` is built, this directory is prepended onto all install directories. This variable defaults to -``/usr/local`` on UNIX and ``c:/Program Files`` on Windows. +``/usr/local`` on UNIX and ``c:/Program Files/${PROJECT_NAME}`` on Windows. On UNIX one can use the ``DESTDIR`` mechanism in order to relocate the whole installation. ``DESTDIR`` means DESTination DIRectory. It is |