diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-02-15 10:28:27 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-02-19 11:35:43 (GMT) |
commit | 074534a56d4d6146c2389fd256299197e5bad027 (patch) | |
tree | db946ceb929bf0d0dba08a0f5a9cd28ac9ff970e /Source/cmQtAutoGenerators.cxx | |
parent | a51f1a91d9733c596113f799154ef45d647e7764 (diff) | |
download | CMake-074534a56d4d6146c2389fd256299197e5bad027.zip CMake-074534a56d4d6146c2389fd256299197e5bad027.tar.gz CMake-074534a56d4d6146c2389fd256299197e5bad027.tar.bz2 |
Autogen: Inline string generation
Diffstat (limited to 'Source/cmQtAutoGenerators.cxx')
-rw-r--r-- | Source/cmQtAutoGenerators.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index 842461a..a167705 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -1131,11 +1131,8 @@ bool cmQtAutoGenerators::MocGenerateAll( } // Actually write moc_compilation.cpp - { - std::string msg = "Generating MOC compilation "; - msg += this->OutMocCppFilenameRel; - this->LogBold(msg); - } + this->LogBold("Generating MOC compilation " + this->OutMocCppFilenameRel); + // Make sure the parent directory exists bool success = this->MakeParentDirectory(this->OutMocCppFilenameAbs); if (success) { |