diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-09-10 14:20:43 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-09-17 12:39:42 (GMT) |
commit | b8877b1d62599bba7a014e95fbbd670f177243ce (patch) | |
tree | ba9c4f149b34ea7d124a5a49e6bf0f78d0802071 /Source/cmQtAutoGenerators.cxx | |
parent | 71a11252e95797113ecb1a969386f496b7d4861b (diff) | |
download | CMake-b8877b1d62599bba7a014e95fbbd670f177243ce.zip CMake-b8877b1d62599bba7a014e95fbbd670f177243ce.tar.gz CMake-b8877b1d62599bba7a014e95fbbd670f177243ce.tar.bz2 |
QtAutogen: Add source files to target when only AUTORCC is used.
Add missing entry to if condition.
Diffstat (limited to 'Source/cmQtAutoGenerators.cxx')
-rw-r--r-- | Source/cmQtAutoGenerators.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index a8bb317..4b8f810 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -392,7 +392,8 @@ void cmQtAutoGenerators::SetupAutoGenerateTarget(cmTarget const* target) std::map<std::string, std::string> configUicOptions; if (target->GetPropertyAsBool("AUTOMOC") - || target->GetPropertyAsBool("AUTOUIC")) + || target->GetPropertyAsBool("AUTOUIC") + || target->GetPropertyAsBool("AUTORCC")) { this->SetupSourceFiles(target); } |