summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/SConscript
blob: c0606c4ab1dc0c2883d7b626fb65512391ad64ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- mode: python -*-

Import("env")

env.StaticLibrary(
    target = "working_set",
    source = [
        "working_set.cpp",
    ],
    LIBDEPS = [
        "$BUILD_DIR/mongo/bson",
    ],
)

env.CppUnitTest(
    target = "working_set_test",
    source = [
        "working_set_test.cpp"
    ],
    LIBDEPS = [
        "working_set",
    ],
)

env.StaticLibrary(
    target = "mock_stage",
    source = [
        "mock_stage.cpp",
    ],
    LIBDEPS = [
        "working_set",
    ],
)

env.StaticLibrary(
    target = 'exec',
    source = [
        "and_hash.cpp",
        "and_sorted.cpp",
        "fetch.cpp",
        "index_scan.cpp",
        "limit.cpp",
        "or.cpp",
        "skip.cpp",
        "stagedebug_cmd.cpp",
        "working_set_common.cpp",
    ],
    LIBDEPS = [
        "$BUILD_DIR/mongo/bson"
    ],
)