/[escript]/trunk/bruce/test/SConstruct
ViewVC logotype

Annotation of /trunk/bruce/test/SConstruct

Parent Directory Parent Directory | Revision Log Revision Log


Revision 248 - (hide annotations)
Tue Nov 29 04:58:23 2005 UTC (17 years, 3 months ago) by jgs
File size: 690 byte(s)
add top level scons config files to allow building
of all unit tests for each module at once

1 jgs 242 # top-level Scons configuration file for all bruce unit tests
2    
3     import os
4    
5     #
6     # ensure correct versions of python and scons
7    
8     EnsurePythonVersion(2,3)
9     EnsureSConsVersion(0,96)
10    
11     #
12     # retreive command-line arguments if any
13     # these are passed through to SConscripts
14    
15     if ARGUMENTS.get('usegcc',0):
16     usegcc = 1
17     else:
18     usegcc = 0
19     Export(["usegcc"])
20    
21 jgs 248 if ARGUMENTS.get('options',0):
22     options = ARGUMENTS.get('options',0)
23     else:
24     options = None
25     Export(["options"])
26    
27 jgs 242 #
28     # set and export esysroot
29    
30 jgs 248 esysroot = Dir('#../..')
31 jgs 242 Export(["esysroot"])
32    
33     #
34     # call appropriate SConscripts
35    
36     target_scripts = ['Bruce/SConstruct',
37     'BruceFactory/SConstruct']
38    
39     SConscript(target_scripts, duplicate=0)

  ViewVC Help
Powered by ViewVC 1.1.26