summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/SConscript
blob: 2cb765f6ac2db3d79126e38f254600109284aba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- mode: python; -*-
Import("env")
env = env.Clone()

# TODO remove conditional with SERVER-80640
if "-flto=thin" not in env["CCFLAGS"]:
    wtbin = env.BazelProgram(
        target='wt',
        source=Glob('src/utilities/*.c'),
        LIBDEPS=[
            'wiredtiger',
        ],
        AIB_COMPONENT='wiredtiger',
        AIB_COMPONENTS_EXTRA=[
            'dist-test',
        ],
    )