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) |