summaryrefslogtreecommitdiff
path: root/src/SConscript
blob: 2dc6110008dc66641b58bea69d841c6b9f102eb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- mode: python; -*-
#
# This is the principle SConscript file, invoked by the SConstruct.  Its job is
# to delegate to any and all per-module SConscript files.

Import('env module_sconscripts')

env.SConscript(
    [
        # NOTE: We must do third_party first as it adds methods to the environment
        # that we need in the mongo sconscript
        'third_party/SConscript',
        'mongo/SConscript',
    ] + module_sconscripts
)