diff options
author | Brad King <brad.king@kitware.com> | 2014-06-24 15:40:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-24 17:18:20 (GMT) |
commit | d19b64d671e9f1e706218bd0acc6a727e7114158 (patch) | |
tree | 80d62ad1ce7000c1adb185e90b45794257828bef /Source/cmInstallGenerator.h | |
parent | c9568de52c4e11c04a9f758ea9ecc1e72ea7cbfb (diff) | |
download | CMake-d19b64d671e9f1e706218bd0acc6a727e7114158.zip CMake-d19b64d671e9f1e706218bd0acc6a727e7114158.tar.gz CMake-d19b64d671e9f1e706218bd0acc6a727e7114158.tar.bz2 |
install(DIRECTORY): Add MESSAGE_NEVER option to avoid output (#13761)
Installing large directories, e.g., the output of a doxygen run, prints
one line per file resulting in too much noise in the build output. Add
an option to the install(DIRECTORY) command to not print anything upon
make install.
Extend the RunCMake.install test with cases covering MESSAGE_NEVER
behavior of the install(DIRECTORY) command.
Suggested-by: Stefan Eilemann <Stefan.Eilemann@epfl.ch>
Diffstat (limited to 'Source/cmInstallGenerator.h')
-rw-r--r-- | Source/cmInstallGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmInstallGenerator.h b/Source/cmInstallGenerator.h index e32276f..38aac91 100644 --- a/Source/cmInstallGenerator.h +++ b/Source/cmInstallGenerator.h @@ -60,8 +60,8 @@ public: /** Test if this generator installs something for a given configuration. */ bool InstallsForConfig(const std::string& config); - /** Select message level from CMAKE_INSTALL_MESSAGE. */ - static MessageLevel SelectMessageLevel(cmMakefile* mf); + /** Select message level from CMAKE_INSTALL_MESSAGE or 'never'. */ + static MessageLevel SelectMessageLevel(cmMakefile* mf, bool never = false); protected: virtual void GenerateScript(std::ostream& os); |