From df5f6e07b6442dca594b7849563bcd222ebecc8c Mon Sep 17 00:00:00 2001 From: Benson Muite Date: Tue, 23 Jan 2024 10:15:41 +0300 Subject: [PATCH] Install private libraries in a subdirectory Move them out of LD_LIBRARY_PATH --- src/module_help.pro | 4 ++-- src/module_multimedia.pro | 4 ++-- src/module_network.pro | 4 ++-- src/module_quick.pro | 4 ++-- src/module_sql.pro | 4 ++-- src/module_webengine.pro | 4 ++-- src/module_webkit.pro | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/module_help.pro b/src/module_help.pro index 72273de..6252ef9 100644 --- a/src/module_help.pro +++ b/src/module_help.pro @@ -11,11 +11,11 @@ MOC_DIR = ./tmp/help/ VERSION = $$(EQL_VERSION) unix { - target.path = $$[QT_INSTALL_LIBS] + target.path = $$[QT_INSTALL_LIBS]/eql5 } osx { - target.path = /usr/local/lib + target.path = /usr/local/lib/eql5 } INSTALLS = target diff --git a/src/module_multimedia.pro b/src/module_multimedia.pro index eea396e..50d42bf 100644 --- a/src/module_multimedia.pro +++ b/src/module_multimedia.pro @@ -11,11 +11,11 @@ MOC_DIR = ./tmp/multimedia/ VERSION = $$(EQL_VERSION) unix { - target.path = $$[QT_INSTALL_LIBS] + target.path = $$[QT_INSTALL_LIBS]/eql5 } osx { - target.path = /usr/local/lib + target.path = /usr/local/lib/eql5 } INSTALLS = target diff --git a/src/module_network.pro b/src/module_network.pro index 4bca78f..f53614f 100644 --- a/src/module_network.pro +++ b/src/module_network.pro @@ -11,11 +11,11 @@ MOC_DIR = ./tmp/network/ VERSION = $$(EQL_VERSION) unix { - target.path = $$[QT_INSTALL_LIBS] + target.path = $$[QT_INSTALL_LIBS]/eql5 } osx { - target.path = /usr/local/lib + target.path = /usr/local/lib/eql5 } INSTALLS = target diff --git a/src/module_quick.pro b/src/module_quick.pro index be2b003..b4b16e7 100644 --- a/src/module_quick.pro +++ b/src/module_quick.pro @@ -11,11 +11,11 @@ MOC_DIR = ./tmp/quick/ VERSION = $$(EQL_VERSION) unix { - target.path = $$[QT_INSTALL_LIBS] + target.path = $$[QT_INSTALL_LIBS]/eql5 } osx { - target.path = /usr/local/lib + target.path = /usr/local/lib/eql5 } INSTALLS = target diff --git a/src/module_sql.pro b/src/module_sql.pro index a58ae76..5f96073 100644 --- a/src/module_sql.pro +++ b/src/module_sql.pro @@ -11,11 +11,11 @@ MOC_DIR = ./tmp/sql/ VERSION = $$(EQL_VERSION) unix { - target.path = $$[QT_INSTALL_LIBS] + target.path = $$[QT_INSTALL_LIBS]/eql5 } osx { - target.path = /usr/local/lib + target.path = /usr/local/lib/eql5 } INSTALLS = target diff --git a/src/module_webengine.pro b/src/module_webengine.pro index 076a30c..7521afe 100644 --- a/src/module_webengine.pro +++ b/src/module_webengine.pro @@ -11,11 +11,11 @@ MOC_DIR = ./tmp/webengine/ VERSION = $$(EQL_VERSION) unix { - target.path = $$[QT_INSTALL_LIBS] + target.path = $$[QT_INSTALL_LIBS]/eql5 } osx { - target.path = /usr/local/lib + target.path = /usr/local/lib/eql5 } INSTALLS = target diff --git a/src/module_webkit.pro b/src/module_webkit.pro index 7030965..d4f7046 100644 --- a/src/module_webkit.pro +++ b/src/module_webkit.pro @@ -12,11 +12,11 @@ VERSION = $$(EQL_VERSION) macx:QT += network unix { - target.path = $$[QT_INSTALL_LIBS] + target.path = $$[QT_INSTALL_LIBS]/eql5 } osx { - target.path = /usr/local/lib + target.path = /usr/local/lib/eql5 } INSTALLS = target