diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-08-16 00:00:36 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-08-16 00:00:36 (GMT) |
commit | d045fd4ec5d88658988c8878b313b2bf7924f40f (patch) | |
tree | 73c5de356434dbee3549400bf2c75c43dc1372d7 /Source | |
parent | 50cd6cef925a53dfbbb820ae7343981dcf00f36c (diff) | |
download | CMake-d045fd4ec5d88658988c8878b313b2bf7924f40f.zip CMake-d045fd4ec5d88658988c8878b313b2bf7924f40f.tar.gz CMake-d045fd4ec5d88658988c8878b313b2bf7924f40f.tar.bz2 |
Nicer progress message for the automoc target
Alex
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmQtAutomoc.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmQtAutomoc.cxx b/Source/cmQtAutomoc.cxx index 6dbc9e1..e8c4baa 100644 --- a/Source/cmQtAutomoc.cxx +++ b/Source/cmQtAutomoc.cxx @@ -66,11 +66,13 @@ void cmQtAutomoc::SetupAutomocTarget(cmTarget* target) "", makefile->GetCurrentOutputDirectory()); std::vector<std::string> depends; + std::string automocComment = "Automoc for target "; + automocComment += targetName; cmTarget* mocTarget = makefile->AddUtilityCommand(automocTargetName.c_str(), true, - workingDirectory.c_str(), depends, - commandLines, false, "Automoc target"); + workingDirectory.c_str(), depends, + commandLines, false, automocComment.c_str()); target->AddUtility(automocTargetName.c_str()); // configure a file to get all information to automoc at buildtime: |