diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2016-11-30 21:12:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-12-07 13:23:59 (GMT) |
commit | 39e07d7a175d5da0c1a2ebc905689705571d2084 (patch) | |
tree | 0d4f823615ce092bcf8ecc38d9ba2afd5bc745ff /Source | |
parent | 8c6f990fb600d042ebb7a21996280ef31798bc79 (diff) | |
download | CMake-39e07d7a175d5da0c1a2ebc905689705571d2084.zip CMake-39e07d7a175d5da0c1a2ebc905689705571d2084.tar.gz CMake-39e07d7a175d5da0c1a2ebc905689705571d2084.tar.bz2 |
QtAutogen: Use upper case for MOC, UIC and RCC in messages
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmQtAutoGeneratorInitializer.cxx | 6 | ||||
-rw-r--r-- | Source/cmQtAutoGenerators.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmQtAutoGeneratorInitializer.cxx b/Source/cmQtAutoGeneratorInitializer.cxx index 76af466..de70d34 100644 --- a/Source/cmQtAutoGeneratorInitializer.cxx +++ b/Source/cmQtAutoGeneratorInitializer.cxx @@ -705,13 +705,13 @@ void cmQtAutoGeneratorInitializer::InitializeAutogenTarget( { std::vector<std::string> toolNames; if (target->GetPropertyAsBool("AUTOMOC")) { - toolNames.push_back("moc"); + toolNames.push_back("MOC"); } if (target->GetPropertyAsBool("AUTOUIC")) { - toolNames.push_back("uic"); + toolNames.push_back("UIC"); } if (target->GetPropertyAsBool("AUTORCC")) { - toolNames.push_back("rcc"); + toolNames.push_back("RCC"); } std::string tools = toolNames[0]; diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index b497fb0..f90f0d5 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -1389,7 +1389,7 @@ bool cmQtAutoGenerators::GenerateQrc(const std::string& qrcInputFile, if (this->GenerateAll || generateQrc) { { - std::string msg = "Generating QRC source "; + std::string msg = "Generating RCC source "; msg += qrcOutputFile; this->LogBold(msg); } |