From 9a25e31ae8933331cfa82eb6b8b8f5f3c430f96b Mon Sep 17 00:00:00 2001 From: Dan Cape Date: Tue, 22 Aug 2017 14:58:08 -0400 Subject: [PATCH] QNX: Add QNX Abi to the library collection function Since QNX was split into it's own Abi (QnxOS), it is no longer piggybacking on the UnixOS Abi. When this change occurred, there was no change done to collectLibraryData function so on QNX we were no longer seeing libs created from projects that were subdirs of a main project. Related QnxOS change: e69c2eb Change-Id: Ibb4ff8932ca5d6eea317946aecb53f58ddccc0ea Reviewed-by: Orgad Shaneh --- src/plugins/qmakeprojectmanager/qmakeproject.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/qmakeprojectmanager/qmakeproject.cpp b/src/plugins/qmakeprojectmanager/qmakeproject.cpp index c241189d9e1..b28ae8e54c7 100644 --- a/src/plugins/qmakeprojectmanager/qmakeproject.cpp +++ b/src/plugins/qmakeprojectmanager/qmakeproject.cpp @@ -1202,6 +1202,7 @@ void QmakeProject::collectLibraryData(const QmakeProFile *file, DeploymentData & } case Abi::LinuxOS: case Abi::BsdOS: + case Abi::QnxOS: case Abi::UnixOS: if (!(isPlugin && config.contains(QLatin1String("no_plugin_name_prefix")))) targetFileName.prepend(QLatin1String("lib"));