1 |
esysroot = Dir('#.') |
# top-level Scons configuration file for all esys13 modules |
2 |
Export(["esysroot"]) |
# |
3 |
|
# set appropriate defaults for configuration variables |
4 |
|
esysroot=str(Dir('.').abspath) |
5 |
|
execfile(str(File(esysroot+"/scons/esys_options.py"))) |
6 |
|
|
7 |
SConscript(['tools/CppUnitTest/SConstruct','tools/mmio/SConstruct','esysUtils/SConstruct','escript/SConstruct','paso/SConstruct','finley/SConstruct','bruce/SConstruct'], duplicate=0) |
# |
8 |
|
# call appropriate SConscripts |
9 |
|
|
10 |
|
target_scripts = ['tools/CppUnitTest/SConstruct', |
11 |
|
'tools/mmio/SConstruct', |
12 |
|
'esysUtils/SConstruct', |
13 |
|
'escript/SConstruct', |
14 |
|
'bruce/SConstruct', |
15 |
|
'paso/SConstruct', |
16 |
|
'finley/SConstruct', |
17 |
|
'modellib/SConstruct'] |
18 |
|
|
19 |
|
# 'doc/SConstruct'] |
20 |
|
|
21 |
|
SConscript(target_scripts, duplicate=0) |