mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-14 19:08:07 +08:00
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.
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
cmInstallScriptGenerator
|
||||
::cmInstallScriptGenerator(const char* script, bool code,
|
||||
const char* component) :
|
||||
cmInstallGenerator(0, std::vector<std::string>(), component),
|
||||
cmInstallGenerator(0, std::vector<std::string>(), component, MessageDefault),
|
||||
Script(script), Code(code)
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user