diff options
author | Alberto Lerner <alerner@10gen.com> | 2010-11-12 22:45:03 -0500 |
---|---|---|
committer | Alberto Lerner <alerner@10gen.com> | 2010-11-12 22:45:19 -0500 |
commit | 9f5e46b49246ea5c887c39e8aae8806e2a692173 (patch) | |
tree | 48860ed788122fe0015f02e3922a59a62dc4fb9f /SConstruct | |
parent | dc0aff562c04d63bbfab780bb8076dea01a7fe6e (diff) | |
download | mongo-9f5e46b49246ea5c887c39e8aae8806e2a692173.tar.gz |
pull ChunkMatcher to its own module
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 525ce5d6b4d..f09fed0a594 100644 --- a/SConstruct +++ b/SConstruct @@ -469,7 +469,7 @@ coreServerFiles += scriptingFiles coreShardFiles = [ "s/config.cpp" , "s/grid.cpp" , "s/chunk.cpp" , "s/shard.cpp" , "s/shardkey.cpp" ] shardServerFiles = coreShardFiles + Glob( "s/strategy*.cpp" ) + [ "s/commands_admin.cpp" , "s/commands_public.cpp" , "s/request.cpp" , "s/cursors.cpp" , "s/server.cpp" , "s/config_migrate.cpp" , "s/s_only.cpp" , "s/stats.cpp" , "s/balance.cpp" , "s/balancer_policy.cpp" , "db/cmdline.cpp" , "s/writeback_listener.cpp" , "s/shard_version.cpp" ] -serverOnlyFiles += coreShardFiles + [ "s/d_logic.cpp" , "s/d_writeback.cpp" , "s/d_migrate.cpp" , "s/d_state.cpp" , "s/d_split.cpp" , "client/distlock_test.cpp" , "s/d_background_splitter.cpp" ] +serverOnlyFiles += coreShardFiles + [ "s/d_logic.cpp" , "s/d_writeback.cpp" , "s/d_migrate.cpp" , "s/d_state.cpp" , "s/d_split.cpp" , "client/distlock_test.cpp" , "s/d_chunk_matcher.cpp" , "s/d_background_splitter.cpp" ] serverOnlyFiles += [ "db/module.cpp" ] + Glob( "db/modules/*.cpp" ) |