blob: dc4c943c10f8d8642c48afcc15ecdfffbb63644c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- mode: python -*-
Import("env")
env.Library(
target='server_status_core',
source=[
'server_status_internal.cpp',
'server_status_metric.cpp',
],
LIBDEPS=[
'$BUILD_DIR/mongo/bson'
]
)
|