mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-13 01:29:02 -05:00
QtAutogen: Use upper case for MOC, UIC and RCC in messages
This commit is contained in:
committed by
Brad King
parent
8c6f990fb6
commit
39e07d7a17
@@ -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];
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user