From aad3410864887d59ecd7d43ae7cf646a20b13c2b Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 14 Sep 2012 15:38:56 +0200 Subject: factor out qtAddTargetEnv() Change-Id: Ib0517da54da98de4b1f2ee7d80bee22316231091 Reviewed-by: Joerg Bornemann --- mkspecs/features/qt_functions.prf | 31 +++++++++++++++++++++++++++++++ mkspecs/features/qt_tool.prf | 30 +----------------------------- 2 files changed, 32 insertions(+), 29 deletions(-) diff --git a/mkspecs/features/qt_functions.prf b/mkspecs/features/qt_functions.prf index 58c35ddd41..c700a37e5a 100644 --- a/mkspecs/features/qt_functions.prf +++ b/mkspecs/features/qt_functions.prf @@ -204,6 +204,37 @@ defineTest(qtAddToolEnv) { export($$1) } +defineTest(qtAddTargetEnv) { + deps = $$resolve_depends(QT, "QT.") + !isEmpty(deps) { + plugin_paths = + for(dep, deps) { + deppath += $$shell_path($$eval(QT.$${dep}.libs)) + for(rpath, QT.$${dep}.rpath_link): \ + deppath += $$shell_path($$rpath) + plugin_paths += $$eval(QT.$${dep}.plugin_path) $$eval(QT.$${dep}.plugins) + } + equals(QMAKE_HOST.os, Windows): \ + deppath.name = PATH + else:contains(QMAKE_HOST.os, Linux|FreeBSD): \ + deppath.name = LD_LIBRARY_PATH + else:equals(QMAKE_HOST.os, Darwin): \ + deppath.name = DYLD_LIBRARY_PATH + else: \ + error("Operating system not supported.") + deppath.value = $$unique(deppath) + deppath.CONFIG = prepend + pluginpath.name = QT_PLUGIN_PATH + pluginpath.value = + plugin_paths = $$unique(plugin_paths) + for(ppath, plugin_paths): \ + exists($$ppath): \ + pluginpath.value += $$shell_path($$ppath) + QT_TOOL_ENV += deppath pluginpath + } + qtAddToolEnv($$1, $$QT_TOOL_ENV) +} + defineReplace(pkgConfigExecutable) { isEmpty(PKG_CONFIG) { PKG_CONFIG = pkg-config diff --git a/mkspecs/features/qt_tool.prf b/mkspecs/features/qt_tool.prf index b52362a9b0..01a26b238e 100644 --- a/mkspecs/features/qt_tool.prf +++ b/mkspecs/features/qt_tool.prf @@ -33,35 +33,7 @@ INSTALLS += target load(resolve_target) cmd = $$shell_path($$QMAKE_RESOLVED_TARGET) - deps = $$resolve_depends(QT, "QT.") - !isEmpty(deps) { - plugin_paths = - for(dep, deps) { - deppath += $$shell_path($$eval(QT.$${dep}.libs)) - for(rpath, QT.$${dep}.rpath_link): \ - deppath += $$shell_path($$rpath) - plugin_paths += $$eval(QT.$${dep}.plugin_path) $$eval(QT.$${dep}.plugins) - } - equals(QMAKE_HOST.os, Windows): \ - deppath.name = PATH - else:contains(QMAKE_HOST.os, Linux|FreeBSD): \ - deppath.name = LD_LIBRARY_PATH - else:equals(QMAKE_HOST.os, Darwin): \ - deppath.name = DYLD_LIBRARY_PATH - else: \ - error("Operating system not supported.") - deppath.value = $$unique(deppath) - deppath.CONFIG = prepend - pluginpath.name = QT_PLUGIN_PATH - pluginpath.value = - plugin_paths = $$unique(plugin_paths) - for(ppath, plugin_paths): \ - exists($$ppath): \ - pluginpath.value += $$shell_path($$ppath) - QT_TOOL_ENV += deppath pluginpath - } - - qtAddToolEnv(cmd, $$QT_TOOL_ENV) + qtAddTargetEnv(cmd) TOOL_PRI = $$MODULE_QMAKE_OUTDIR/mkspecs/modules/qt_$${MODULE}.pri -- cgit v1.2.3