summaryrefslogtreecommitdiff
path: root/src/mongo/db/stats
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-05-05 15:08:40 -0400
committerAndrew Morrow <acm@mongodb.com>2015-05-06 15:47:24 -0400
commit585f7c70d6c04d4daa07e3abbc927de69c98fa58 (patch)
tree958c7a490737095f8fba3ceb256f65f4643d84af /src/mongo/db/stats
parentfc479a171ca18871beea3fdc2af3baba29f55f13 (diff)
downloadmongo-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/SConscript9
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=[
+ ],
+)