mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-15 12:16:40 +08: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