poco/MongoDB/testsuite/Makefile
Matej Kenda 3838070146
Resolves #3484: support for OP_MSG in Poco::MongoDB (#3902)
* Binary writer/reader: add writeCString and readCString.

* MongoDB::Database: add queryBuildInfo and queryServerHello; add WireVersion enum.

* MongoDB: Introduce OpMsgMessage (request and reply) and related changes in Connection, Database, MessageHeader.

* MongoDB: First unit test changes for OpMsgMessage.

* MongoDB::Document: new functions addNewArray and remove.

* MongoDB: OP_MSG unacknowledged write and many improvements

* MongoDB: new cursor using OP_MSG

* MongoDB: bunch of new tests for OP_MSG wire protocol.

* BinaryWriter::WriteCString: use write instead of operator <<.

* MongoDB::OpMsgCursor: Slightly modified prototype code for using moreToCome flag.

* MongoDB: Add OpMsg* files to Makefiles.

* MongoDB: Add OpMsg* files to VS project files.

* Compile fixes.

* MongoDB::Database: Add factory function for database commands createOpMsgMessage() and cursors createOpMsgCursor()
2023-03-20 01:50:15 -05:00

16 lines
307 B
Makefile

#
# Makefile
#
# Makefile for Poco MongoDB testsuite
#
include $(POCO_BASE)/build/rules/global
objects = Driver MongoDBTest MongoDBTestOpMsg MongoDBTestSuite
target = testrunner
target_version = 1
target_libs = PocoMongoDB PocoFoundation PocoNet CppUnit
include $(POCO_BASE)/build/rules/exec