summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
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);
}