diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2023-04-08 23:30:45 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2023-04-09 01:17:31 +0200 |
commit | 1a89ca3ad2f98c4713b04dc42cd03af278060941 (patch) | |
tree | e463c34538224df186b21a542413f86148b1e059 | |
parent | 77829c42282e8576f05372d9d687738cae756f63 (diff) | |
download | tdebluez-1a89ca3ad2f98c4713b04dc42cd03af278060941.tar.gz tdebluez-1a89ca3ad2f98c4713b04dc42cd03af278060941.zip |
Add DBUS_TQT_LIBRARY_DIRS to link_directories
to avoid potential linker failure.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | src/libtdebluez/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/libtdeobex/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/tdebluez/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/tdebluezauth/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/tdebluezioclient/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/tdebluezioslave/bluetooth/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/tdebluezioslave/obex/CMakeLists.txt | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/src/libtdebluez/CMakeLists.txt b/src/libtdebluez/CMakeLists.txt index bb80327..af33393 100644 --- a/src/libtdebluez/CMakeLists.txt +++ b/src/libtdebluez/CMakeLists.txt @@ -39,6 +39,7 @@ include_directories( link_directories( ${TQT_LIBRARY_DIRS} + ${DBUS_TQT_LIBRARY_DIRS} ) ##### headers ################################### diff --git a/src/libtdeobex/CMakeLists.txt b/src/libtdeobex/CMakeLists.txt index c998ff0..b4323c8 100644 --- a/src/libtdeobex/CMakeLists.txt +++ b/src/libtdeobex/CMakeLists.txt @@ -39,6 +39,7 @@ include_directories( link_directories( ${TQT_LIBRARY_DIRS} + ${DBUS_TQT_LIBRARY_DIRS} ) ##### headers ################################### diff --git a/src/tdebluez/CMakeLists.txt b/src/tdebluez/CMakeLists.txt index ac92309..ce3e9ec 100644 --- a/src/tdebluez/CMakeLists.txt +++ b/src/tdebluez/CMakeLists.txt @@ -26,6 +26,7 @@ include_directories( link_directories( ${TQT_LIBRARY_DIRS} + ${DBUS_TQT_LIBRARY_DIRS} ) ##### tdebluez (tdeinit) ###################### diff --git a/src/tdebluezauth/CMakeLists.txt b/src/tdebluezauth/CMakeLists.txt index 681179a..4e3bc8b 100644 --- a/src/tdebluezauth/CMakeLists.txt +++ b/src/tdebluezauth/CMakeLists.txt @@ -24,6 +24,7 @@ include_directories( link_directories( ${TQT_LIBRARY_DIRS} + ${DBUS_TQT_LIBRARY_DIRS} ) ##### tdebluezauth (tdeinit) ###################### diff --git a/src/tdebluezioclient/CMakeLists.txt b/src/tdebluezioclient/CMakeLists.txt index 71bfc28..b1a8059 100644 --- a/src/tdebluezioclient/CMakeLists.txt +++ b/src/tdebluezioclient/CMakeLists.txt @@ -26,6 +26,7 @@ include_directories( link_directories( ${TQT_LIBRARY_DIRS} + ${DBUS_TQT_LIBRARY_DIRS} ) ##### tdebluezioclient ########################### diff --git a/src/tdebluezioslave/bluetooth/CMakeLists.txt b/src/tdebluezioslave/bluetooth/CMakeLists.txt index ac6e996..f9b9eeb 100644 --- a/src/tdebluezioslave/bluetooth/CMakeLists.txt +++ b/src/tdebluezioslave/bluetooth/CMakeLists.txt @@ -24,6 +24,7 @@ include_directories( link_directories( ${TQT_LIBRARY_DIRS} + ${DBUS_TQT_LIBRARY_DIRS} ) ##### tdeio_bluetooth (static) ############################# diff --git a/src/tdebluezioslave/obex/CMakeLists.txt b/src/tdebluezioslave/obex/CMakeLists.txt index 6c5272c..9e90ea5 100644 --- a/src/tdebluezioslave/obex/CMakeLists.txt +++ b/src/tdebluezioslave/obex/CMakeLists.txt @@ -24,6 +24,7 @@ include_directories( link_directories( ${TQT_LIBRARY_DIRS} + ${DBUS_TQT_LIBRARY_DIRS} ) ##### tdeio_obex (part) ############################# |