diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-03-11 22:26:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-03-12 21:42:02 (GMT) |
commit | a223a3b65f518f59a73967f0087b0d67842d9f0d (patch) | |
tree | 19c8549420d979a291f91474aabad4b43f7a9c17 /Source/cmGlobalGenerator.cxx | |
parent | 65b5c1e0645a466dbf5d163296754d12e2db53d5 (diff) | |
download | CMake-a223a3b65f518f59a73967f0087b0d67842d9f0d.zip CMake-a223a3b65f518f59a73967f0087b0d67842d9f0d.tar.gz CMake-a223a3b65f518f59a73967f0087b0d67842d9f0d.tar.bz2 |
Automoc: Don't create automoc targets if Qt is not used (#13999)
Commit 79568f95 (automoc: Add source file to target early to set the
linker language, 2013-02-20) changed automoc initialization to a two
step process. In the first step, the generated source file was added
to the target, which allows the link language to be determined.
However, this bypassed the check for the availability of Qt itself.
At build-time the automoc file could not be generated because the moc
tool was not available to create it.
The solution is to only add the automoc file to the target if Qt is
found.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index f2defbb..2fae7d0 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1086,8 +1086,10 @@ void cmGlobalGenerator::CreateAutomocTargets() if(target.GetPropertyAsBool("AUTOMOC") && !target.IsImported()) { cmQtAutomoc automoc; - automoc.InitializeMocSourceFile(&target); - automocs.push_back(std::make_pair(automoc, &target)); + if(automoc.InitializeMocSourceFile(&target)) + { + automocs.push_back(std::make_pair(automoc, &target)); + } } } } |