feat: before threading

This commit is contained in:
semenov
2024-08-19 11:57:33 +03:00
parent 6878eb0697
commit ea18836923
48 changed files with 722 additions and 562 deletions

View File

@@ -21,7 +21,7 @@ void ExternalExecuter::CallApp()
myProcess.waitForFinished(-1);
}
void ExternalExecuter::FindApp()
bool ExternalExecuter::FindApp()
{
QString localPath = QDir::currentPath() + "/Application";
QDirIterator iterator(localPath,QDirIterator::Subdirectories);
@@ -31,7 +31,9 @@ void ExternalExecuter::FindApp()
if(iterator.fileInfo().fileName() == "RRJ.exe"){
programPath = iterator.fileInfo().absoluteFilePath();
qDebug() << "Bin found: " << programPath;
return true;
}
}
return false;
}