# -*- mode: python; -*- Import('env') env = env.Clone() env.Library( target='bson_extract', source=[ 'bson_extract.cpp', ], LIBDEPS=[ '$BUILD_DIR/mongo/base', ], ) env.Library( target='simple8b', source=[ 'simple8b.cpp', ], LIBDEPS=[ '$BUILD_DIR/mongo/base', ], ) env.CppUnitTest( target='bson_util_test', source=[ 'bson_check_test.cpp', 'bson_extract_test.cpp', 'builder_test.cpp', 'simple8b_test.cpp' ], LIBDEPS=[ '$BUILD_DIR/mongo/base', 'bson_extract', 'simple8b', ], )