summaryrefslogtreecommitdiff
path: root/src/mongo/bson/util/SConscript
blob: b43d850db83ec5f4cf693d8ad66eef14d7270f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- mode: python; -*-

Import('env')

env = env.Clone()

env.Library(
    target='bson_extract',
    source=[
        'bson_extract.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/base',
    ],
)

env.CppUnitTest(
    target='bson_util_test',
    source=[
        'bson_check_test.cpp',
        'bson_extract_test.cpp',
        'builder_test.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/base',
        'bson_extract',
    ],
)