mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-30 19:54:35 +00:00
added crtbase
This commit is contained in:
parent
be83052109
commit
51a4f53fc1
@ -14,7 +14,9 @@
|
||||
#include <QDebug>
|
||||
#include "pathutils.h"
|
||||
|
||||
DependenciesScanner::DependenciesScanner() {}
|
||||
DependenciesScanner::DependenciesScanner() {
|
||||
|
||||
}
|
||||
|
||||
void DependenciesScanner::clearScaned() {
|
||||
_scanedLibs.clear();
|
||||
@ -158,6 +160,11 @@ void DependenciesScanner::addToWinAPI(const QString &lib, QHash<WinAPI, QSet<QSt
|
||||
void DependenciesScanner::setEnvironment(const QStringList &env) {
|
||||
QDir dir;
|
||||
QHash<WinAPI, QSet<QString>> winAPI;
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
winAPI[WinAPI::Crt] += "UCRTBASE.DLL";
|
||||
#endif
|
||||
|
||||
for (auto i : env) {
|
||||
|
||||
dir.setPath(i);
|
||||
|
Loading…
x
Reference in New Issue
Block a user