mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
3838070146
* 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()
16 lines
307 B
Makefile
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
|