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

env = env.Clone()

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/service_context_test_fixture',
                                '$BUILD_DIR/mongo/db/storage/encryption_hooks',
                                '$BUILD_DIR/mongo/db/storage/storage_options',
                                '$BUILD_DIR/mongo/s/is_mongos',
                                '$BUILD_DIR/third_party/shim_snappy'])