Fix library searching
This commit is contained in:
parent
268a359cf4
commit
396cc0f5f5
|
@ -58,11 +58,12 @@ link_directories (${libssl_LIBRARY_DIRS} ${jansson_LIBRARY_DIRS})
|
||||||
|
|
||||||
# -lpthread is only there for debugging (gdb & errno)
|
# -lpthread is only there for debugging (gdb & errno)
|
||||||
# -lrt is only for glibc < 2.17
|
# -lrt is only for glibc < 2.17
|
||||||
|
# -liconv may or may not be a part of libc
|
||||||
foreach (extra iconv dl rt pthread)
|
foreach (extra iconv dl rt pthread)
|
||||||
find_library (extra_lib ${extra})
|
find_library (extra_lib_${extra} ${extra})
|
||||||
if (extra_lib)
|
if (extra_lib_${extra})
|
||||||
list (APPEND project_libraries ${extra})
|
list (APPEND project_libraries ${extra})
|
||||||
endif (extra_lib)
|
endif (extra_lib_${extra})
|
||||||
endforeach (extra)
|
endforeach (extra)
|
||||||
|
|
||||||
# Project source files
|
# Project source files
|
||||||
|
|
Loading…
Reference in New Issue