summaryrefslogtreecommitdiff
path: root/src/mongo/util/cmdline_utils/SConscript
blob: 1cf262ac6c6bf11ecea030c19719a1342e7826aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- mode: python -*-

Import("env")

env = env.Clone()

env.Library(
    target='cmdline_utils',
    source=[
        'censor_cmdline.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/base',
        '$BUILD_DIR/mongo/util/options_parser/options_parser',
    ],
)