diff options
author | Brad King <brad.king@kitware.com> | 2014-06-24 14:45:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-24 17:12:02 (GMT) |
commit | ec7cf7ea1311adaf6eb8dd1ab5c2aa8e3745339e (patch) | |
tree | 9dad5b456eea444fe1316f928bde9adf0a991bed /Source/cmInstallTargetGenerator.cxx | |
parent | abebcd235c94e05a20003430981a1b46b0fb7f95 (diff) | |
download | CMake-ec7cf7ea1311adaf6eb8dd1ab5c2aa8e3745339e.zip CMake-ec7cf7ea1311adaf6eb8dd1ab5c2aa8e3745339e.tar.gz CMake-ec7cf7ea1311adaf6eb8dd1ab5c2aa8e3745339e.tar.bz2 |
install: Thread message level setting through internal API
Create a cmInstallGenerator::MessageLevel enumeration for future use in
specifying install message verbosity. Thread values of the type through
constructors and save the value as a member of cmInstallGenerator.
Use only a "MessageDefault" value for now.
Diffstat (limited to 'Source/cmInstallTargetGenerator.cxx')
-rw-r--r-- | Source/cmInstallTargetGenerator.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmInstallTargetGenerator.cxx b/Source/cmInstallTargetGenerator.cxx index ec2b518..85df91d 100644 --- a/Source/cmInstallTargetGenerator.cxx +++ b/Source/cmInstallTargetGenerator.cxx @@ -24,8 +24,10 @@ cmInstallTargetGenerator ::cmInstallTargetGenerator(cmTarget& t, const char* dest, bool implib, const char* file_permissions, std::vector<std::string> const& configurations, - const char* component, bool optional): - cmInstallGenerator(dest, configurations, component), Target(&t), + const char* component, + MessageLevel message, + bool optional): + cmInstallGenerator(dest, configurations, component, message), Target(&t), ImportLibrary(implib), FilePermissions(file_permissions), Optional(optional) { this->ActionsPerConfig = true; |