summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutoGeneratorInitializer.cxx
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2016-12-02 12:03:38 (GMT)
committerBrad King <brad.king@kitware.com>2016-12-07 13:24:02 (GMT)
commitb5409d04f1c1309deb7e45163a106c8cb4daf38c (patch)
tree54981d971d3f24ff9e000428626afe314c52d550 /Source/cmQtAutoGeneratorInitializer.cxx
parentd9996aab74836bb830e106bea0b0064a4c74cb1c (diff)
downloadCMake-b5409d04f1c1309deb7e45163a106c8cb4daf38c.zip
CMake-b5409d04f1c1309deb7e45163a106c8cb4daf38c.tar.gz
CMake-b5409d04f1c1309deb7e45163a106c8cb4daf38c.tar.bz2
QtAutogen: Rename autogen target to *_autogen from *_automoc
Diffstat (limited to 'Source/cmQtAutoGeneratorInitializer.cxx')
-rw-r--r--Source/cmQtAutoGeneratorInitializer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmQtAutoGeneratorInitializer.cxx b/Source/cmQtAutoGeneratorInitializer.cxx
index 7448ec2..889c61d 100644
--- a/Source/cmQtAutoGeneratorInitializer.cxx
+++ b/Source/cmQtAutoGeneratorInitializer.cxx
@@ -58,7 +58,7 @@ static std::string utilStripCR(std::string const& line)
static std::string GetAutogenTargetName(cmGeneratorTarget const* target)
{
std::string autogenTargetName = target->GetName();
- autogenTargetName += "_automoc";
+ autogenTargetName += "_autogen";
return autogenTargetName;
}