summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallFilesGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-06-24 14:45:07 (GMT)
committerBrad King <brad.king@kitware.com>2014-06-24 17:12:02 (GMT)
commitec7cf7ea1311adaf6eb8dd1ab5c2aa8e3745339e (patch)
tree9dad5b456eea444fe1316f928bde9adf0a991bed /Source/cmInstallFilesGenerator.cxx
parentabebcd235c94e05a20003430981a1b46b0fb7f95 (diff)
downloadCMake-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/cmInstallFilesGenerator.cxx')
-rw-r--r--Source/cmInstallFilesGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmInstallFilesGenerator.cxx b/Source/cmInstallFilesGenerator.cxx
index b2be82e..91b102a 100644
--- a/Source/cmInstallFilesGenerator.cxx
+++ b/Source/cmInstallFilesGenerator.cxx
@@ -23,9 +23,10 @@ cmInstallFilesGenerator
const char* file_permissions,
std::vector<std::string> const& configurations,
const char* component,
+ MessageLevel message,
const char* rename,
bool optional):
- cmInstallGenerator(dest, configurations, component),
+ cmInstallGenerator(dest, configurations, component, message),
Makefile(mf),
Files(files), Programs(programs),
FilePermissions(file_permissions),