We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c4aea7 commit d20dcbaCopy full SHA for d20dcba
contrib/mongo-c-driver-cmake/CMakeLists.txt
@@ -1,4 +1,10 @@
1
option(USE_MONGODB "Enable MongoDB support" ${ENABLE_LIBRARIES})
2
+
3
+if(OS_DARWIN)
4
+ message(STATUS "Not using libmongoc and libbson on macOS")
5
+ set (USE_MONGODB OFF)
6
+endif()
7
8
if(NOT USE_MONGODB)
9
message(STATUS "Not using libmongoc and libbson")
10
return()
contrib/mongo-cxx-driver-cmake/CMakeLists.txt
@@ -1,5 +1,10 @@
+ message(STATUS "Not using mongocxx and bsoncxx on macOS")
message(STATUS "Not using mongocxx and bsoncxx")
0 commit comments