/[escript]/branches/ROBW_XPLATFORM/bruce/py_src/SConscript
ViewVC logotype

Annotation of /branches/ROBW_XPLATFORM/bruce/py_src/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 288 - (hide annotations)
Fri Dec 2 01:55:04 2005 UTC (17 years, 3 months ago) by jgs
Original Path: trunk/bruce/py_src/SConscript
File size: 594 byte(s)
now automatically build unit tests as required based on dependencies
between unit tests and libraries

1 jgs 268 pyinstall = None
2    
3     Import('*')
4    
5     import os
6     import sys
7    
8     extensions_dir = str(esysroot) + '/scons'
9     sys.path.append(extensions_dir)
10    
11     import scons_extensions
12    
13     brucepy_env = Environment(ENV = os.environ)
14    
15     py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True)
16     brucepy_env.Append(BUILDERS = {'PyCompile' : py_builder});
17    
18     python_src = ['__init__.py',
19     'bruce.py']
20    
21     pyc = brucepy_env.PyCompile(python_src)
22     brucepy_env.Install(pydir, pyc)
23 jgs 288 brucepy_env.Install(pydir2, pyc)
24 jgs 268
25     if pyinstall != None:
26     brucepy_env.Install(pyinstall, pyc)

  ViewVC Help
Powered by ViewVC 1.1.26