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

Annotation of /trunk/esysUtils/test/SConstruct

Parent Directory Parent Directory | Revision Log Revision Log


Revision 307 - (hide annotations)
Mon Dec 5 01:58:18 2005 UTC (17 years, 3 months ago) by jgs
Original Path: trunk/esysUtils/test/SConscript
File size: 657 byte(s)
build unit tests from main scons file now

1 jgs 248 # top-level Scons configuration file for all esysUtils 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     if ARGUMENTS.get('options',0):
22     options = ARGUMENTS.get('options',0)
23     else:
24     options = None
25     Export(["options"])
26    
27     #
28     # set and export esysroot
29    
30     esysroot = Dir('#../..')
31     Export(["esysroot"])
32    
33     #
34     # call appropriate SConscripts
35    
36     target_scripts = ['EsysException/SConstruct']
37    
38     SConscript(target_scripts, duplicate=0)

  ViewVC Help
Powered by ViewVC 1.1.26