summaryrefslogtreecommitdiff
path: root/src/mongo/db/bson/SConscript
blob: e021674662fd5204e57737a51368ddb91a716bca (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="dotted_path_support_test",
    source=[
        "dotted_path_support_test.cpp",
    ],
    LIBDEPS=[
        "dotted_path_support",
    ],
)