mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 15:20:56 -06:00
Autogen: Fix rcc validity check
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user