13 lines
251 B
Python
13 lines
251 B
Python
import os
|
|
|
|
env = Environment(ENV=os.environ)
|
|
Export('env')
|
|
|
|
AddOption('--minimal',
|
|
action='store_false',
|
|
dest='extras',
|
|
default=True,
|
|
help='the minimum build. no tests, tools, etc.')
|
|
|
|
SConscript(['SConscript'])
|