From 396cc0f5f561ca69283a4a8ca9097ddbf1c5c479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Thu, 6 Aug 2015 21:56:21 +0200 Subject: Fix library searching --- CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a7f421..38bc2f1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,11 +58,12 @@ link_directories (${libssl_LIBRARY_DIRS} ${jansson_LIBRARY_DIRS}) # -lpthread is only there for debugging (gdb & errno) # -lrt is only for glibc < 2.17 +# -liconv may or may not be a part of libc foreach (extra iconv dl rt pthread) - find_library (extra_lib ${extra}) - if (extra_lib) + find_library (extra_lib_${extra} ${extra}) + if (extra_lib_${extra}) list (APPEND project_libraries ${extra}) - endif (extra_lib) + endif (extra_lib_${extra}) endforeach (extra) # Project source files -- cgit v1.2.3