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

Contents of /trunk/finley/test/SConstruct

Parent Directory Parent Directory | Revision Log Revision Log


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

1 # top-level Scons configuration file for all finley 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 = ['MeshAdapter/SConstruct']
37
38 SConscript(target_scripts, duplicate=0)

  ViewVC Help
Powered by ViewVC 1.1.26