mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
no mongo-driver on macos
This commit is contained in:
parent
8c4aea735a
commit
d20dcba358
@ -1,4 +1,10 @@
|
||||
option(USE_MONGODB "Enable MongoDB support" ${ENABLE_LIBRARIES})
|
||||
|
||||
if(OS_DARWIN)
|
||||
message(STATUS "Not using libmongoc and libbson on macOS")
|
||||
set (USE_MONGODB OFF)
|
||||
endif()
|
||||
|
||||
if(NOT USE_MONGODB)
|
||||
message(STATUS "Not using libmongoc and libbson")
|
||||
return()
|
||||
|
@ -1,5 +1,10 @@
|
||||
option(USE_MONGODB "Enable MongoDB support" ${ENABLE_LIBRARIES})
|
||||
|
||||
if(OS_DARWIN)
|
||||
message(STATUS "Not using mongocxx and bsoncxx on macOS")
|
||||
set (USE_MONGODB OFF)
|
||||
endif()
|
||||
|
||||
if(NOT USE_MONGODB)
|
||||
message(STATUS "Not using mongocxx and bsoncxx")
|
||||
return()
|
||||
|
Loading…
Reference in New Issue
Block a user