1 |
esysroot = None |
2 |
libinstall = None |
3 |
|
4 |
Import('*') |
5 |
|
6 |
if esysroot == None: |
7 |
esysroot = Dir('#..') |
8 |
Export(["esysroot"]) |
9 |
|
10 |
Export(["libinstall"]) |
11 |
|
12 |
libdir = Dir(str(esysroot) + '/bruce/lib') |
13 |
Export(["libdir"]) |
14 |
|
15 |
python_path = '/raid2/tools/python-2.3.4/include/python2.3' |
16 |
boost_path = '/raid2/tools/boost/include/boost-1_31' |
17 |
|
18 |
Export(["python_path"]) |
19 |
Export(["boost_path"]) |
20 |
|
21 |
cxx_flags = '-O0 -openmp -openmp_report0 -tpp2 -ansi -ansi_alias -no-gcc -fpic -w1' |
22 |
|
23 |
Export(["cxx_flags"]) |
24 |
|
25 |
SConscript('src/Bruce/SConscript', src_dir='src/Bruce', build_dir='obj', duplicate=0) |