blob: 4245c9a1c5e43ff2e015123a5782f8b2e4f7a225 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- 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('module_sconscripts')
SConscript(['mongo/SConscript',
'third_party/SConscript'] +
module_sconscripts)
|