|
@@ -24,6 +24,9 @@ cmQtAutoGenGlobalInitializer::Keywords::Keywords()
|
|
|
: AUTOMOC("AUTOMOC")
|
|
|
, AUTOUIC("AUTOUIC")
|
|
|
, AUTORCC("AUTORCC")
|
|
|
+ , AUTOMOC_EXECUTABLE("AUTOMOC_EXECUTABLE")
|
|
|
+ , AUTOUIC_EXECUTABLE("AUTOUIC_EXECUTABLE")
|
|
|
+ , AUTORCC_EXECUTABLE("AUTORCC_EXECUTABLE")
|
|
|
{
|
|
|
}
|
|
|
|
|
@@ -86,11 +89,11 @@ cmQtAutoGenGlobalInitializer::cmQtAutoGenGlobalInitializer(
|
|
|
bool const rcc = target->GetPropertyAsBool(kw().AUTORCC);
|
|
|
if (moc || uic || rcc) {
|
|
|
std::string const mocExec =
|
|
|
- target->GetSafeProperty("AUTOMOC_EXECUTABLE");
|
|
|
+ target->GetSafeProperty(kw().AUTOMOC_EXECUTABLE);
|
|
|
std::string const uicExec =
|
|
|
- target->GetSafeProperty("AUTOUIC_EXECUTABLE");
|
|
|
+ target->GetSafeProperty(kw().AUTOUIC_EXECUTABLE);
|
|
|
std::string const rccExec =
|
|
|
- target->GetSafeProperty("AUTORCC_EXECUTABLE");
|
|
|
+ target->GetSafeProperty(kw().AUTORCC_EXECUTABLE);
|
|
|
|
|
|
// We support Qt4, Qt5 and Qt6
|
|
|
auto qtVersion = cmQtAutoGenInitializer::GetQtVersion(target);
|