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