Merge remote-tracking branch 'base/master'

This commit is contained in:
Eryn Wells 2016-02-26 22:47:14 -08:00
commit a6fb9594da
52 changed files with 32479 additions and 1 deletions

View file

@ -1,2 +1,19 @@
# SConstruct
# vim: set ft=python:
#
# Toplevel Scons build script. This should be mostly complete and generic enough
# for most builds.
#
# Eryn Wells <eryn@erynwells.me>
import logging
setup_logging()
BUILD_CMDS = get_bool_argument(ARGUMENTS.get('BUILD_CMDS', False))
MODE = ARGUMENTS.get('MODE', None)
for mode in (MODE.split(',') if MODE else ['debug']):
env = Environment.for_mode(mode)
env.process_lib_dirs()
env.process_src()
env.process_tests()