diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-05-05 15:08:40 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-05-06 15:47:24 -0400 |
commit | 585f7c70d6c04d4daa07e3abbc927de69c98fa58 (patch) | |
tree | 958c7a490737095f8fba3ceb256f65f4643d84af /src/mongo/db/stats | |
parent | fc479a171ca18871beea3fdc2af3baba29f55f13 (diff) | |
download | mongo-585f7c70d6c04d4daa07e3abbc927de69c98fa58.tar.gz |
SERVER-9666 Push stats/counters into new library in db/stats
Diffstat (limited to 'src/mongo/db/stats')
-rw-r--r-- | src/mongo/db/stats/SConscript | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mongo/db/stats/SConscript b/src/mongo/db/stats/SConscript index ba121d2e981..3141d5e5272 100644 --- a/src/mongo/db/stats/SConscript +++ b/src/mongo/db/stats/SConscript @@ -21,3 +21,12 @@ env.CppUnitTest( 'top', ], ) + +env.Library( + target='counters', + source=[ + 'counters.cpp', + ], + LIBDEPS=[ + ], +) |