summaryrefslogtreecommitdiff
path: root/src/mongo/util/cmdline_utils/SConscript
blob: 1fbe0abb7e7b2d3c5b08041763599fe161cd0efe (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',
    ])