summaryrefslogtreecommitdiff
path: root/src/mongo/util/options_parser
diff options
context:
space:
mode:
authorAndrew Morrow <acm@10gen.com>2013-11-18 14:39:45 -0500
committerAndrew Morrow <acm@10gen.com>2013-11-18 21:20:32 -0500
commitb0cd366ef38cd300a19379628dd89088b4b19774 (patch)
tree58ec177ec9ce211c35d00ba5d3e375ece045e8f6 /src/mongo/util/options_parser
parent406ca294a71842f279d59ebdd42c1a92f0b72791 (diff)
downloadmongo-b0cd366ef38cd300a19379628dd89088b4b19774.tar.gz
SERVER-11658 Consistently use Library target
Diffstat (limited to 'src/mongo/util/options_parser')
-rw-r--r--src/mongo/util/options_parser/SConscript24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mongo/util/options_parser/SConscript b/src/mongo/util/options_parser/SConscript
index 029e1aced4f..21054497bcf 100644
--- a/src/mongo/util/options_parser/SConscript
+++ b/src/mongo/util/options_parser/SConscript
@@ -2,18 +2,18 @@
Import("env")
-env.StaticLibrary('options_parser', ['environment.cpp',
- 'value.cpp',
- 'constraints.cpp',
- 'option_section.cpp',
- 'option_description.cpp',
- 'options_parser.cpp',
- 'startup_option_init.cpp',
- 'startup_options.cpp',
- ],
- LIBDEPS=['$BUILD_DIR/mongo/bson',
- '$BUILD_DIR/third_party/shim_yaml'
- ])
+env.Library('options_parser', ['environment.cpp',
+ 'value.cpp',
+ 'constraints.cpp',
+ 'option_section.cpp',
+ 'option_description.cpp',
+ 'options_parser.cpp',
+ 'startup_option_init.cpp',
+ 'startup_options.cpp',
+ ],
+ LIBDEPS=['$BUILD_DIR/mongo/bson',
+ '$BUILD_DIR/third_party/shim_yaml'
+ ])
env.CppUnitTest('options_parser_test',
'options_parser_test.cpp',