summaryrefslogtreecommitdiff
path: root/src/mongo/db/sorter/SConscript
blob: 1ceb05088afd07794983fe39c4553a369b503c7c (plain)
1
2
3
4
5
6
7
8
9
10
Import("env")

sorterEnv = env.Clone()
sorterEnv.InjectThirdPartyIncludePaths(libraries=['snappy'])
sorterEnv.CppUnitTest('sorter_test',
                      'sorter_test.cpp',
                       LIBDEPS=['$BUILD_DIR/mongo/db/service_context',
                                '$BUILD_DIR/mongo/db/storage/encryption_hooks',
                                '$BUILD_DIR/mongo/db/storage/storage_options',
                                '$BUILD_DIR/third_party/shim_snappy'])