diff options
author | Oswald Buddenhagen <oswald.buddenhagen@digia.com> | 2013-05-08 15:30:56 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-05-13 21:54:40 +0200 |
commit | 8739487b1ce2dc2b93fe7ff283c76f6a56919f1b (patch) | |
tree | 686ae246ed10a328597202c31af7ff3b9eb97044 /qmake/property.cpp | |
parent | 38dc6ccca0d65fa2df4297de4f4e2a90e7ab2fc6 (diff) | |
download | qtbase-8739487b1ce2dc2b93fe7ff283c76f6a56919f1b.tar.gz |
install host libraries into -hostprefix
... and introduce -hostlibdir configure option for symmetry.
the libraries built for the host have no business in the target prefix.
in principle this code would even support dynamically linked host
libraries, but that's currently unused.
Task-number: QTBUG-30591
Change-Id: I8e600fa4911a020fb0e87fbf7ef2f35647c7c4d5
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Reviewed-by: Ivan Romanov <drizt@land.ru>
Diffstat (limited to 'qmake/property.cpp')
-rw-r--r-- | qmake/property.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qmake/property.cpp b/qmake/property.cpp index c4fbcd6b78..4685440b48 100644 --- a/qmake/property.cpp +++ b/qmake/property.cpp @@ -74,6 +74,7 @@ static const struct { { "QT_HOST_PREFIX", QLibraryInfo::HostPrefixPath, true }, { "QT_HOST_DATA", QLibraryInfo::HostDataPath, true }, { "QT_HOST_BINS", QLibraryInfo::HostBinariesPath, true }, + { "QT_HOST_LIBS", QLibraryInfo::HostLibrariesPath, true }, { "QMAKE_SPEC", QLibraryInfo::HostSpecPath, true }, { "QMAKE_XSPEC", QLibraryInfo::TargetSpecPath, true }, }; |