summaryrefslogtreecommitdiff
path: root/src/mongo/bson/util/SConscript
blob: 4e589e7aa6ea3d717c5940b9299e771f2c1c6967 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- 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_extract_test',
    source=[
        'bson_extract_test.cpp'
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/base',
        'bson_extract',
    ],
)

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

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