mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-06 00:31:10 +01:00
47c70bb11e
- explicitly list files Reviewed-by: Roger Meier <r.meier@siemens.com>
54 lines
1.1 KiB
CMake
54 lines
1.1 KiB
CMake
set(LIBNAME "PocoMongoDB")
|
|
|
|
set(SRCS
|
|
src/Array.cpp
|
|
src/Binary.cpp
|
|
src/Connection.cpp
|
|
src/Cursor.cpp
|
|
src/Database.cpp
|
|
src/DeleteRequest.cpp
|
|
src/Document.cpp
|
|
src/Element.cpp
|
|
src/GetMoreRequest.cpp
|
|
src/InsertRequest.cpp
|
|
src/JavaScriptCode.cpp
|
|
src/KillCursorsRequest.cpp
|
|
src/Message.cpp
|
|
src/MessageHeader.cpp
|
|
src/ObjectId.cpp
|
|
src/QueryRequest.cpp
|
|
src/RegularExpression.cpp
|
|
src/ReplicaSet.cpp
|
|
src/RequestMessage.cpp
|
|
src/ResponseMessage.cpp
|
|
src/UpdateRequest.cpp
|
|
)
|
|
|
|
if (NOT POCO_STATIC)
|
|
add_definitions(-DMongoDB_EXPORTS)
|
|
endif (NOT POCO_STATIC)
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
|
set_target_properties( ${LIBNAME}
|
|
PROPERTIES
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
|
target_link_libraries( ${LIBNAME} PocoNet PocoFoundation)
|
|
|
|
install(
|
|
DIRECTORY include/Poco
|
|
DESTINATION include
|
|
PATTERN ".svn" EXCLUDE
|
|
)
|
|
|
|
install(
|
|
TARGETS ${LIBNAME}
|
|
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
|
ARCHIVE DESTINATION lib${LIB_SUFFIX}
|
|
RUNTIME DESTINATION bin
|
|
)
|
|
|
|
if (ENABLE_TESTS)
|
|
add_subdirectory(testsuite)
|
|
endif ()
|
|
|