summaryrefslogtreecommitdiff
path: root/src/mongo/bson/util/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/bson/util/SConscript')
-rw-r--r--src/mongo/bson/util/SConscript44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/mongo/bson/util/SConscript b/src/mongo/bson/util/SConscript
new file mode 100644
index 00000000000..8360fb10ed3
--- /dev/null
+++ b/src/mongo/bson/util/SConscript
@@ -0,0 +1,44 @@
+# -*- mode: python; -*-
+
+Import('env')
+
+env.Library(
+ target='bson_extract',
+ source=[
+ 'bson_extract.cpp',
+ ],
+ LIBDEPS=[
+ '$BUILD_DIR/mongo/bson/bson',
+ ],
+)
+
+env.CppUnitTest(
+ target='bson_extract_test',
+ source=[
+ 'bson_extract_test.cpp'
+ ],
+ LIBDEPS=[
+ '$BUILD_DIR/mongo/bson/bson',
+ 'bson_extract',
+ ],
+)
+
+env.CppUnitTest(
+ target='builder_test',
+ source=[
+ 'builder_test.cpp',
+ ],
+ LIBDEPS=[
+ '$BUILD_DIR/mongo/bson/bson',
+ ],
+)
+
+env.CppUnitTest(
+ target='bson_check_test',
+ source=[
+ 'bson_check_test.cpp',
+ ],
+ LIBDEPS=[
+ '$BUILD_DIR/mongo/bson/bson',
+ ],
+)