12345678910111213141516171819202122232425262728 |
- # -*- coding: utf-8; mode: Python -*-
- # (c) Daniel Llorens - 2016, 2019
- # This library is free software; you can redistribute it and/or modify it under
- # the terms of the GNU Lesser General Public License as published by the Free
- # Software Foundation; either version 3 of the License, or (at your option) any
- # later version.
- # Top SConstruct for ra-ra
- import os, atexit
- from os.path import join, abspath
- from SCons.Script import GetBuildFailures
- import imp
- ra = imp.load_source('ra', 'config/ra.py')
- top = {'skip_summary': True}; Export('top');
- SConscript('test/SConstruct', 'top')
- SConscript('bench/SConstruct', 'top')
- SConscript('examples/SConstruct', 'top')
- SConscript('box/SConstruct', 'top')
- # SConscript('docs/SConstruct', 'top') # TODO run from docs, otherwise makeinfo writes empty files (??)
- Default(['test', 'bench', 'examples']) # exclude box
- atexit.register(lambda: ra.print_summary(GetBuildFailures, 'ra-ra'))
|