summaryrefslogtreecommitdiff
path: root/src/mongo/db/index/SConscript
blob: 5fc97a1c488fea62e5071cef70d6893486bda753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- mode: python -*-

Import("env")

env.StaticLibrary(
        target='key_generator',
        source=[
            'btree_key_generator.cpp',
        ],
        LIBDEPS=[
            '$BUILD_DIR/mongo/bson',
        ],
)