git-svn-id: svn://db.shs.com.ru/libs@783 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2020-03-14 19:40:03 +00:00
parent fc5f12cebc
commit f54edfac7c

View File

@@ -144,6 +144,13 @@ void procLdd(PIString file, bool ext_lib = false, int cur_depth = 0) {
PIString l = sl.trimmed(); PIString l = sl.trimmed();
if (!otool.isEmpty()) { if (!otool.isEmpty()) {
if (l.contains(".framework/")) { if (l.contains(".framework/")) {
PIStringList ll = l.split("/");
piForeachRC (PIString & _f, ll) {
if (_f.endsWith(".framework")) {
l = _f;
piBreak;
}
}
frameworks << l; frameworks << l;
if (l.contains("QtCore") || l.contains("Qt5Core")) if (l.contains("QtCore") || l.contains("Qt5Core"))
need_qt = true; need_qt = true;