diff options
author | aneejit1 <[email protected]> | 2022-05-03 22:21:07 +0000 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2022-05-04 00:59:12 +0200 |
commit | c87f466d984d062b57bbd764e515a09a9fd7a99a (patch) | |
tree | 0e1b6ebb4adf3064d528caa079fab41894be4bd1 | |
parent | a082f0bf0c785dc00741e15bc258f7cd225a9cec (diff) | |
download | kaffeine-mozilla-c87f466d984d062b57bbd764e515a09a9fd7a99a.tar.gz kaffeine-mozilla-c87f466d984d062b57bbd764e515a09a9fd7a99a.zip |
Add LIBXAW7_LIBRARY_DIRS to the link_directories
Add the library paths for the xaw7 library to the list of link_directories
in src/CMakeLists.txt to cater for when the library is not in /usr.
Signed-off-by: aneejit1 <[email protected]>
(cherry picked from commit a310a83ba1fc74ac49993537a91672b1a6fd67f0)
-rw-r--r-- | src/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9061415..3d5179d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -9,6 +9,10 @@ include_directories( ${LIBXAW7_INCLUDE_DIRS} ) +link_directories( + ${LIBXAW7_LIBRARY_DIRS} +) + ##### kaffeineplugin (module) |