summaryrefslogtreecommitdiff
path: root/src/mongo/db/timeseries/SConscript
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2021-03-26 06:49:36 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-03-26 11:10:37 +0000
commitde4ce4b0bdf9412e4c9ed254a7215b3bdc709e21 (patch)
treeedc2337bfde7622883dbafa573d03d25a24b7fdc /src/mongo/db/timeseries/SConscript
parent144edad978b0f81c7d9f89f5e12697a246ff0dfc (diff)
downloadmongo-de4ce4b0bdf9412e4c9ed254a7215b3bdc709e21.tar.gz
SERVER-54800 move timeseries::getTimeseriesOptions() into its own library
Diffstat (limited to 'src/mongo/db/timeseries/SConscript')
-rw-r--r--src/mongo/db/timeseries/SConscript10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mongo/db/timeseries/SConscript b/src/mongo/db/timeseries/SConscript
index 9cb1e079f20..be2bb1ff8d2 100644
--- a/src/mongo/db/timeseries/SConscript
+++ b/src/mongo/db/timeseries/SConscript
@@ -33,6 +33,16 @@ env.Library(
source=[
'timeseries_index_schema_conversion_functions.cpp',
],
+ LIBDEPS_PRIVATE=[
+ 'timeseries_idl',
+ ],
+)
+
+env.Library(
+ target='timeseries_lookup',
+ source=[
+ 'timeseries_lookup.cpp',
+ ],
LIBDEPS=[
'$BUILD_DIR/mongo/base',
'timeseries_idl',