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