summaryrefslogtreecommitdiff
path: root/src/mongo/util/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/SConscript')
-rw-r--r--src/mongo/util/SConscript24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mongo/util/SConscript b/src/mongo/util/SConscript
index fc59a929ee0..e0b0487dd49 100644
--- a/src/mongo/util/SConscript
+++ b/src/mongo/util/SConscript
@@ -228,6 +228,30 @@ env.Library(
)
env.Library(
+ target='namespace_string_util',
+ source=[
+ 'namespace_string_util.cpp',
+ ],
+ LIBDEPS=[
+ '$BUILD_DIR/mongo/db/multitenancy',
+ '$BUILD_DIR/mongo/db/server_base',
+ '$BUILD_DIR/mongo/db/server_feature_flags',
+ '$BUILD_DIR/mongo/db/server_options_core',
+ '$BUILD_DIR/mongo/idl/feature_flag',
+ ],
+)
+
+env.CppUnitTest(
+ target='namespace_string_util_test',
+ source=[
+ 'namespace_string_util_test.cpp',
+ ],
+ LIBDEPS=[
+ 'namespace_string_util',
+ ],
+)
+
+env.Library(
target="periodic_runner",
source=[
"periodic_runner.cpp",