summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2016-11-30 21:12:50 (GMT)
committerBrad King <brad.king@kitware.com>2016-12-07 13:23:59 (GMT)
commit39e07d7a175d5da0c1a2ebc905689705571d2084 (patch)
tree0d4f823615ce092bcf8ecc38d9ba2afd5bc745ff /Source
parent8c6f990fb600d042ebb7a21996280ef31798bc79 (diff)
downloadCMake-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.cxx6
-rw-r--r--Source/cmQtAutoGenerators.cxx2
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);
}