diff options
author | François Andriot <[email protected]> | 2016-04-13 23:12:16 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-04-14 00:20:49 +0200 |
commit | 09255fac060b4bf3426b2e45277d7d798c162767 (patch) | |
tree | 96a55e3c8d198d513b358c1e0c8881b678d124b4 /src | |
parent | a08f1e9503238bdbca735e6625c3192c52705ce4 (diff) | |
download | libr-09255fac060b4bf3426b2e45277d7d798c162767.tar.gz libr-09255fac060b4bf3426b2e45277d7d798c162767.zip |
Fix FTBFS due to missing link dl library
Signed-off-by: François Andriot <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 100c7c6..559d8bc 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -40,7 +40,7 @@ tde_add_library( ${target} SHARED VERSION 0.0.0 SOURCES ${${target}_SRCS} - LINK ${BACKEND_LIBRARIES} ${ZLIB_LIBRARIES} ${EXTRA_LIBRARIES} + LINK ${BACKEND_LIBRARIES} ${ZLIB_LIBRARIES} ${DL_LIBRARIES} ${EXTRA_LIBRARIES} DESTINATION ${LIB_INSTALL_DIR} ) |