diff options
author | Daniel Moody <daniel.moody@mongodb.com> | 2020-08-27 06:03:22 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-08-27 06:21:15 +0000 |
commit | ad84ed6435d49b86bd6f97c530131c094cc6122c (patch) | |
tree | 87d53b749d4d4cac08d424065fd6037bbeee87be /src/mongo/db/fts | |
parent | ed3073ed0ae632bdb0e40fcdbd1d41dd84ec40aa (diff) | |
download | mongo-ad84ed6435d49b86bd6f97c530131c094cc6122c.tar.gz |
SERVER-49703 Added libdep linter alphabetic rule and update all libdeps list to be alphabetical
Diffstat (limited to 'src/mongo/db/fts')
-rw-r--r-- | src/mongo/db/fts/SConscript | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/mongo/db/fts/SConscript b/src/mongo/db/fts/SConscript index 219871dadf5..2d4910b1c28 100644 --- a/src/mongo/db/fts/SConscript +++ b/src/mongo/db/fts/SConscript @@ -75,9 +75,16 @@ env.Library( ], ) -env.Library('ftsmongod', [ - 'ftsmongod.cpp', - ], LIBDEPS=["base_fts","$BUILD_DIR/mongo/base"]) +env.Library( + target='ftsmongod', + source=[ + 'ftsmongod.cpp', + ], + LIBDEPS=[ + "$BUILD_DIR/mongo/base", + "base_fts", + ] +) env.CppUnitTest( target='db_fts_test', |