Update shared.cpp
This commit is contained in:
@@ -49,6 +49,7 @@
|
|||||||
QString appBinaryPath;
|
QString appBinaryPath;
|
||||||
bool runStripEnabled = true;
|
bool runStripEnabled = true;
|
||||||
bool bundleAllButCoreLibs = false;
|
bool bundleAllButCoreLibs = false;
|
||||||
|
bool bundleEverything = false;
|
||||||
bool fhsLikeMode = false;
|
bool fhsLikeMode = false;
|
||||||
QString fhsPrefix;
|
QString fhsPrefix;
|
||||||
bool alwaysOwerwriteEnabled = false;
|
bool alwaysOwerwriteEnabled = false;
|
||||||
@@ -429,7 +430,7 @@ LibraryInfo parseLddLibraryLine(const QString &line, const QString &appDirPath,
|
|||||||
if (trimmed.isEmpty())
|
if (trimmed.isEmpty())
|
||||||
return info;
|
return info;
|
||||||
|
|
||||||
|
if(!bundleEverything) {
|
||||||
if(bundleAllButCoreLibs) {
|
if(bundleAllButCoreLibs) {
|
||||||
/*
|
/*
|
||||||
Bundle every lib including the low-level ones except those that are explicitly blacklisted.
|
Bundle every lib including the low-level ones except those that are explicitly blacklisted.
|
||||||
@@ -467,6 +468,7 @@ LibraryInfo parseLddLibraryLine(const QString &line, const QString &appDirPath,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
enum State {QtPath, LibraryName, Version, End};
|
enum State {QtPath, LibraryName, Version, End};
|
||||||
State state = QtPath;
|
State state = QtPath;
|
||||||
|
|||||||
Reference in New Issue
Block a user