diff options
author | aneejit1 <aneejit1@gmail.com> | 2022-05-03 22:21:07 +0000 |
---|---|---|
committer | aneejit1 <aneejit1@gmail.com> | 2022-05-03 22:21:07 +0000 |
commit | a310a83ba1fc74ac49993537a91672b1a6fd67f0 (patch) | |
tree | 5b28c8bdc12ec75e7f22b6d4653047a353b39ed8 | |
parent | 9df4fd95ec4f01a91c7e22e244f1179bf8c9acb2 (diff) | |
download | kaffeine-mozilla-a310a83ba1fc74ac49993537a91672b1a6fd67f0.tar.gz kaffeine-mozilla-a310a83ba1fc74ac49993537a91672b1a6fd67f0.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 <aneejit1@gmail.com>
-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) |