From 88162349f1cdd23868a4d9069fe4c610d62186de Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Sat, 14 Jun 2014 21:48:28 +0400 Subject: [PATCH] adding rt to fc library dependencies --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f1e67f9..e69cb66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -213,10 +213,10 @@ target_include_directories(fc ${CMAKE_CURRENT_SOURCE_DIR}/vendor/easylzma/src ) -target_link_libraries( fc PUBLIC easylzma_static ${Boost_LIBRARIES} ${OPENSSL_LIBRARIES} ${ZLIB_LIBRARIES} ${CMAKE_DL_LIBS}) +target_link_libraries( fc PUBLIC easylzma_static ${Boost_LIBRARIES} ${OPENSSL_LIBRARIES} ${ZLIB_LIBRARIES} ${CMAKE_DL_LIBS} ${rt_library}) add_executable( ntp_test ntp_test.cpp ) -target_link_libraries( ntp_test fc ${rt_library} ) +target_link_libraries( ntp_test fc ) #add_executable( test_compress tests/compress.cpp ) #target_link_libraries( test_compress fc )