summaryrefslogtreecommitdiff
path: root/src/mongo/db/bson/SConscript
blob: eec3a4f5c3abbf9561ecbf46c50c7ffe3713c133 (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
# -*- mode: python -*-

Import("env")

env = env.Clone()

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

env.CppUnitTest(
    target="db_bson_test",
    source=[
        "dotted_path_support_test.cpp",
    ],
    LIBDEPS=[
        "dotted_path_support",
    ],
)