mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-02 04:29:35 +00:00
commit
a18b458d50
@ -7,6 +7,12 @@
|
|||||||
|
|
||||||
TEMPLATE = subdirs
|
TEMPLATE = subdirs
|
||||||
CONFIG += ordered
|
CONFIG += ordered
|
||||||
|
|
||||||
|
lessThan(QT_MAJOR_VERSION, 6):lessThan(QT_MINOR_VERSION, 14) {
|
||||||
|
message(Tests is disabled!)
|
||||||
|
DEFINES += WITHOUT_TESTS
|
||||||
|
}
|
||||||
|
|
||||||
!android {
|
!android {
|
||||||
SUBDIRS += QuasarAppLib \
|
SUBDIRS += QuasarAppLib \
|
||||||
Pe \
|
Pe \
|
||||||
|
@ -52,7 +52,11 @@ void FileManager::loadDeployemendFiles(const QString &targetDir) {
|
|||||||
|
|
||||||
QStringList deployedFiles = settings->getValue(targetDir, "").toStringList();
|
QStringList deployedFiles = settings->getValue(targetDir, "").toStringList();
|
||||||
|
|
||||||
|
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
|
||||||
|
_deployedFiles.unite(deployedFiles.toSet());
|
||||||
|
#else
|
||||||
_deployedFiles.unite(QSet<QString>(deployedFiles.begin(), deployedFiles.end()));
|
_deployedFiles.unite(QSet<QString>(deployedFiles.begin(), deployedFiles.end()));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user