diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-01-14 16:04:44 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-01-14 16:04:44 (GMT) |
commit | b2343ff08682e23f61be27c4faf02f8e2c37abcf (patch) | |
tree | 717a73548e022894fb3d22976781920665c51ad7 | |
parent | 4541c914b587125048c8e82bc3cd687f573f753a (diff) | |
download | CMake-b2343ff08682e23f61be27c4faf02f8e2c37abcf.zip CMake-b2343ff08682e23f61be27c4faf02f8e2c37abcf.tar.gz CMake-b2343ff08682e23f61be27c4faf02f8e2c37abcf.tar.bz2 |
Autogen: Fix rcc validity check
-rw-r--r-- | Source/cmQtAutoGenGlobalInitializer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmQtAutoGenGlobalInitializer.cxx b/Source/cmQtAutoGenGlobalInitializer.cxx index f4cf3e0..d1cbd0d 100644 --- a/Source/cmQtAutoGenGlobalInitializer.cxx +++ b/Source/cmQtAutoGenGlobalInitializer.cxx @@ -93,7 +93,7 @@ cmQtAutoGenGlobalInitializer::cmQtAutoGenGlobalInitializer( bool const rccAvailable = (validQt || !rccExec.empty()); bool const mocIsValid = (moc && mocAvailable); bool const uicIsValid = (uic && uicAvailable); - bool const rccIsValid = (rcc && uicAvailable); + bool const rccIsValid = (rcc && rccAvailable); // Disabled AUTOMOC/UIC/RCC warning bool const mocDisabled = (moc && !mocAvailable); bool const uicDisabled = (uic && !uicAvailable); |