mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-16 14:08:35 +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 rccAvailable = (validQt || !rccExec.empty());
|
||||||
bool const mocIsValid = (moc && mocAvailable);
|
bool const mocIsValid = (moc && mocAvailable);
|
||||||
bool const uicIsValid = (uic && uicAvailable);
|
bool const uicIsValid = (uic && uicAvailable);
|
||||||
bool const rccIsValid = (rcc && uicAvailable);
|
bool const rccIsValid = (rcc && rccAvailable);
|
||||||
// Disabled AUTOMOC/UIC/RCC warning
|
// Disabled AUTOMOC/UIC/RCC warning
|
||||||
bool const mocDisabled = (moc && !mocAvailable);
|
bool const mocDisabled = (moc && !mocAvailable);
|
||||||
bool const uicDisabled = (uic && !uicAvailable);
|
bool const uicDisabled = (uic && !uicAvailable);
|
||||||
|
Reference in New Issue
Block a user