summaryrefslogtreecommitdiffstats
path: root/installerfw.pri
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2020-04-16 07:47:39 +0300
committerSimo Fält <simo.falt@qt.io>2020-04-16 09:16:31 +0000
commit99684e8d9539839aa46ad0c07046c473f40c4a92 (patch)
tree8a55d41804a547cd3a2ac1101db253482602e08d /installerfw.pri
parente2d03134f81cb88d301954e7a63620edf182ddd8 (diff)
Allow setting IFW_LIB_PATH with qmake
Now we can pass the lib location with qmake and use the default only if not set. Change-Id: I17e370015d7edbc687f8313fcf480baca74ab8c2 Reviewed-by: Iikka Eklund <iikka.eklund@qt.io> Reviewed-by: Katja Marttila <katja.marttila@qt.io>
Diffstat (limited to 'installerfw.pri')
-rw-r--r--installerfw.pri4
1 files changed, 3 insertions, 1 deletions
diff --git a/installerfw.pri b/installerfw.pri
index 4f761bf02..901d8ffa9 100644
--- a/installerfw.pri
+++ b/installerfw.pri
@@ -64,7 +64,9 @@ isEmpty(IFW_BUILD_TREE) {
IFW_SOURCE_TREE = $$PWD
IFW_APP_PATH = $$IFW_BUILD_TREE/bin
-IFW_LIB_PATH = $$IFW_BUILD_TREE/lib
+isEmpty(IFW_LIB_PATH) {
+ IFW_LIB_PATH = $$IFW_BUILD_TREE/lib
+}
RCC = $$toNativeSeparators($$cleanPath($$[QT_INSTALL_BINS]/rcc))
LRELEASE = $$toNativeSeparators($$cleanPath($$[QT_INSTALL_BINS]/lrelease))