summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/qt_build_extra.prf
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2016-07-07 13:47:49 +0200
committerLars Knoll <lars.knoll@qt.io>2016-07-13 19:51:34 +0000
commit4cb3c3e15aba83a32f5b4ddcf4561bc231aa4dc2 (patch)
tree19c890f9636a243e0705b2002b21817c02e65dd3 /mkspecs/features/qt_build_extra.prf
parent6f1ad48a9115ff415b0496927451d0f7f5ea284c (diff)
Replace EXTRA_LIBS with EXTRA_LIBDIR and EXTRA_FRAMEWORKPATH
Now that -l and -fw options are gone, using a combined EXTRA_LIBS makes no sense anymore and only complicates things. Change-Id: Ic12bf482f3bed041aff7f0891f008b1f34ae2b4d Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'mkspecs/features/qt_build_extra.prf')
-rw-r--r--mkspecs/features/qt_build_extra.prf3
1 files changed, 2 insertions, 1 deletions
diff --git a/mkspecs/features/qt_build_extra.prf b/mkspecs/features/qt_build_extra.prf
index 378f5bbd7c..448da9b797 100644
--- a/mkspecs/features/qt_build_extra.prf
+++ b/mkspecs/features/qt_build_extra.prf
@@ -23,7 +23,8 @@ INCLUDEPATH += $$EXTRA_INCLUDEPATH
# The other flags are relevant only for actual libraries.
equals(TEMPLATE, aux): return()
-LIBS += $$EXTRA_LIBS
+QMAKE_LIBDIR += $$EXTRA_LIBDIR
+QMAKE_FRAMEWORKPATH += $$EXTRA_FRAMEWORKPATH
# Static libs need no rpaths
static: return()