From 1e271666bdc5347802e8c47d7c0eca42b36bcfe0 Mon Sep 17 00:00:00 2001 From: aneejit1 Date: Tue, 3 May 2022 14:35:08 +0000 Subject: [PATCH] Add GLIB2_LIBRARY_DIRS to the link_directories Add the library paths for the glib libraries to the list of link_directories in keximdb/src/keximdb/CMakeLists.txt to cater for when the libraries are not in /usr. Signed-off-by: aneejit1 --- keximdb/src/keximdb/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/keximdb/src/keximdb/CMakeLists.txt b/keximdb/src/keximdb/CMakeLists.txt index a23134e..582c67b 100644 --- a/keximdb/src/keximdb/CMakeLists.txt +++ b/keximdb/src/keximdb/CMakeLists.txt @@ -12,6 +12,7 @@ include_directories( link_directories( ${TQT_LIBRARY_DIRS} ${TDE_LIB_DIR} + ${GLIB2_LIBRARY_DIRS} ) add_definitions( -DMDB_NO_BACKENDS=1 -DMDB_NO_STATS=1 )