forked from qt-creator/qt-creator
QmakeAndroidSupport: Access parseInProgress and validParse
... via base project node functionality. Change-Id: Ifd9c5b149e11c1d104abed200881fdfe93749144 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -216,6 +216,18 @@ QString QmakeProFileNode::buildKey() const
|
||||
return filePath().toString();
|
||||
}
|
||||
|
||||
bool QmakeProFileNode::parseInProgress() const
|
||||
{
|
||||
QmakeProjectManager::QmakeProFile *pro = proFile();
|
||||
return !pro || pro->parseInProgress();
|
||||
}
|
||||
|
||||
bool QmakeProFileNode::validParse() const
|
||||
{
|
||||
QmakeProjectManager::QmakeProFile *pro = proFile();
|
||||
return pro && pro->validParse();
|
||||
}
|
||||
|
||||
QStringList QmakeProFileNode::targetApplications() const
|
||||
{
|
||||
QStringList apps;
|
||||
|
||||
Reference in New Issue
Block a user