Parent Directory
|
Revision Log
push platform dependent compiler flags and include directories up to library level scons files - these will eventually be brought in from external config files
1 | esysroot = None |
2 | |
3 | Import('*') |
4 | |
5 | if esysroot == None: |
6 | esysroot = Dir('#..') |
7 | Export(["esysroot"]) |
8 | |
9 | libdir = Dir(str(esysroot) + '/escript/lib') |
10 | Export(["libdir"]) |
11 | |
12 | python_path = '/raid2/tools/python-2.3.4/include/python2.3' |
13 | boost_path = '/raid2/tools/boost/include/boost-1_31' |
14 | |
15 | Export(["python_path"]) |
16 | Export(["boost_path"]) |
17 | |
18 | cxx_flags = '-O0 -openmp -openmp_report0 -tpp2 -ansi -ansi_alias -no-gcc -fpic -w1' |
19 | |
20 | Export(["cxx_flags"]) |
21 | |
22 | SConscript('src/Data/SConscript', src_dir='src/Data', build_dir='obj', duplicate=0) |
ViewVC Help | |
Powered by ViewVC 1.1.26 |