summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/SConscript
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-06-16 14:02:19 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-06-17 10:04:20 -0400
commit64bad8fc096d9c19b797bf53ee5806b4d206d1ab (patch)
tree3b7e8796fa7c17116b0d03cd7e46b55a84d98b6e /src/mongo/s/commands/SConscript
parent214f298eb80de95b29581f9b2cbe0db556acdf06 (diff)
downloadmongo-64bad8fc096d9c19b797bf53ee5806b4d206d1ab.tar.gz
SERVER-18947 Cleanup unused code in chunk.h
This is in preparation for moving out networking code out of the Chunk class.
Diffstat (limited to 'src/mongo/s/commands/SConscript')
-rw-r--r--src/mongo/s/commands/SConscript13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mongo/s/commands/SConscript b/src/mongo/s/commands/SConscript
index a32160a676a..90d4bf2ea83 100644
--- a/src/mongo/s/commands/SConscript
+++ b/src/mongo/s/commands/SConscript
@@ -2,6 +2,18 @@
Import("env")
+# These commands are linked both in MongoS and MongoD
+env.Library(
+ target='shared_cluster_commands',
+ source=[
+ 'cluster_get_shard_map_cmd.cpp',
+ ],
+ LIBDEPS=[
+
+ ]
+)
+
+# These commands are linked in MongoS only
env.Library(
target='cluster_commands',
source=[
@@ -13,6 +25,7 @@ env.Library(
'cluster_enable_sharding_cmd.cpp',
'cluster_explain_cmd.cpp',
'cluster_find_cmd.cpp',
+ 'cluster_find_and_modify_cmd.cpp',
'cluster_flush_router_config_cmd.cpp',
'cluster_fsync_cmd.cpp',
'cluster_get_last_error_cmd.cpp',