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', ], )