summaryrefslogtreecommitdiff
path: root/src/mongo/executor/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/executor/SConscript')
-rw-r--r--src/mongo/executor/SConscript11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mongo/executor/SConscript b/src/mongo/executor/SConscript
index 1ec87aa4fd5..c9786c22558 100644
--- a/src/mongo/executor/SConscript
+++ b/src/mongo/executor/SConscript
@@ -4,6 +4,16 @@ Import("env")
env.InjectThirdPartyIncludePaths('asio')
+env.Library(
+ target='connection_pool_stats',
+ source=[
+ 'connection_pool_stats.cpp',
+ ],
+ LIBDEPS=[
+ '$BUILD_DIR/mongo/base',
+ '$BUILD_DIR/mongo/util/net/hostandport',
+ ])
+
env.Library(target='remote_command',
source=[
'remote_command_request.cpp',
@@ -79,6 +89,7 @@ env.Library(
LIBDEPS=[
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/util/net/hostandport',
+ 'connection_pool_stats',
'remote_command',
],
)