Fix build on mac (caused by #3631) (#3654)

* Fix build on mac (caused by #3631)

* fix
This commit is contained in:
proller 2018-11-24 04:15:00 +03:00 committed by alexey-milovidov
parent e69c026a19
commit ad6ae4fdbe
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
add_executable (hashes_test hashes_test.cpp) add_executable (hashes_test hashes_test.cpp)
target_link_libraries (hashes_test PRIVATE dbms) target_link_libraries (hashes_test PRIVATE dbms ${OPENSSL_CRYPTO_LIBRARY})
add_executable (sip_hash sip_hash.cpp) add_executable (sip_hash sip_hash.cpp)
target_link_libraries (sip_hash PRIVATE clickhouse_common_io) target_link_libraries (sip_hash PRIVATE clickhouse_common_io)

View File

@ -52,7 +52,7 @@ list(REMOVE_ITEM clickhouse_functions_headers IFunction.h FunctionFactory.h Func
add_library(clickhouse_functions ${LINK_MODE} ${clickhouse_functions_sources}) add_library(clickhouse_functions ${LINK_MODE} ${clickhouse_functions_sources})
target_link_libraries(clickhouse_functions PUBLIC dbms PRIVATE ${CONSISTENT_HASHING_LIBRARY} consistent-hashing-sumbur ${FARMHASH_LIBRARIES} ${METROHASH_LIBRARIES} murmurhash ${BASE64_LIBRARY}) target_link_libraries(clickhouse_functions PUBLIC dbms PRIVATE ${CONSISTENT_HASHING_LIBRARY} consistent-hashing-sumbur ${FARMHASH_LIBRARIES} ${METROHASH_LIBRARIES} murmurhash ${BASE64_LIBRARY} ${OPENSSL_CRYPTO_LIBRARY})
target_include_directories (clickhouse_functions SYSTEM BEFORE PUBLIC ${DIVIDE_INCLUDE_DIR}) target_include_directories (clickhouse_functions SYSTEM BEFORE PUBLIC ${DIVIDE_INCLUDE_DIR})