mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
30 lines
1.2 KiB
CMake
30 lines
1.2 KiB
CMake
set (SRCS
|
|
"${LIBRARY_DIR}/MongoDB/src/Array.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/Binary.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/Connection.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/Cursor.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/Database.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/DeleteRequest.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/Document.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/Element.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/GetMoreRequest.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/InsertRequest.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/JavaScriptCode.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/KillCursorsRequest.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/Message.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/MessageHeader.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/ObjectId.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/QueryRequest.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/RegularExpression.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/ReplicaSet.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/RequestMessage.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/ResponseMessage.cpp"
|
|
"${LIBRARY_DIR}/MongoDB/src/UpdateRequest.cpp"
|
|
)
|
|
|
|
add_library (_poco_mongodb ${SRCS})
|
|
add_library (Poco::MongoDB ALIAS _poco_mongodb)
|
|
|
|
target_include_directories (_poco_mongodb SYSTEM PUBLIC "${LIBRARY_DIR}/MongoDB/include")
|
|
target_link_libraries (_poco_mongodb PUBLIC Poco::Net)
|