1 |
# Scons configuration file for bruce |
2 |
|
3 |
import os |
4 |
import sys |
5 |
|
6 |
# |
7 |
# ensure correct versions of python and scons |
8 |
|
9 |
EnsurePythonVersion(2,3) |
10 |
EnsureSConsVersion(0,96) |
11 |
|
12 |
# |
13 |
# set appropriate defaults for configuration variables |
14 |
|
15 |
esysroot = Dir('#..') |
16 |
libinstall = None |
17 |
pyinstall = None |
18 |
dodebug = 0 |
19 |
usegcc = 0 |
20 |
options = None |
21 |
|
22 |
# |
23 |
# import configuration variables passed in from |
24 |
# calling SConscript (if any) |
25 |
|
26 |
Import('*') |
27 |
|
28 |
# |
29 |
# retreive command-line arguments if any |
30 |
|
31 |
if ARGUMENTS.get('libinstall',0): |
32 |
libinstall = ARGUMENTS.get('libinstall',0) |
33 |
Export(["libinstall"]) |
34 |
|
35 |
if ARGUMENTS.get('pyinstall',0): |
36 |
pyinstall = ARGUMENTS.get('pyinstall',0) |
37 |
Export(["pyinstall"]) |
38 |
|
39 |
if ARGUMENTS.get('debug',0): |
40 |
dodebug = 1 |
41 |
|
42 |
if ARGUMENTS.get('usegcc',0): |
43 |
usegcc = 1 |
44 |
|
45 |
if ARGUMENTS.get('options',0): |
46 |
options = ARGUMENTS.get('options',0) |
47 |
|
48 |
# |
49 |
# determine platform |
50 |
|
51 |
env = Environment(ENV = os.environ) |
52 |
platform = env['PLATFORM'] |
53 |
|
54 |
# |
55 |
# determine hostname |
56 |
|
57 |
import socket |
58 |
hostname = socket.gethostname() |
59 |
|
60 |
# |
61 |
# export esysroot |
62 |
|
63 |
Export(["esysroot"]) |
64 |
|
65 |
# |
66 |
# set and export library directories |
67 |
|
68 |
libdir = Dir(str(esysroot) + '/bruce/lib') |
69 |
Export(["libdir"]) |
70 |
libdir2 = Dir(str(esysroot) + '/lib') |
71 |
Export(["libdir2"]) |
72 |
|
73 |
# |
74 |
# set and export python directories |
75 |
|
76 |
pydir = Dir(str(esysroot) + '/bruce/lib/py_src') |
77 |
Export(["pydir"]) |
78 |
pydir2 = Dir(str(esysroot) + '/esys/bruce') |
79 |
Export(["pydir2"]) |
80 |
|
81 |
# |
82 |
# load and export configuration settings |
83 |
|
84 |
options_dir = str(esysroot) + '/scons' |
85 |
sys.path.append(options_dir) |
86 |
|
87 |
from default_options import * |
88 |
|
89 |
if hostname=='ess': |
90 |
from ess_options import * |
91 |
|
92 |
if usegcc==1: |
93 |
from gcc_options import * |
94 |
|
95 |
if options!=None: |
96 |
exec "from " + options + " import *" |
97 |
|
98 |
if dodebug==1: |
99 |
cxx_flags=cxx_flags_debug |
100 |
|
101 |
Export(["python_path"]) |
102 |
Export(["boost_path"]) |
103 |
Export(["cxx"]) |
104 |
Export(["cxx_flags"]) |
105 |
Export(["boost_lib_path"]) |
106 |
Export(["boost_lib"]) |
107 |
Export(["sys_libs"]) |
108 |
|
109 |
# |
110 |
# print out build configuration for this module |
111 |
|
112 |
print "Build configuration for module: bruce" |
113 |
print " dodebug: ", dodebug |
114 |
print " usegcc: ", usegcc |
115 |
print " cxx: ", cxx |
116 |
print " platform: ", platform |
117 |
print " hostname: ", hostname |
118 |
print " libinstall: ", libinstall |
119 |
print " pyinstall: ", pyinstall |
120 |
|
121 |
# |
122 |
# call the SConscript to do the actual build |
123 |
|
124 |
SConscript(dirs=['src/Bruce'], build_dir='obj/Bruce', duplicate=0) |
125 |
SConscript(dirs=['py_src'], build_dir='obj/py_src', duplicate=0) |
126 |
SConscript(dirs=['test/Bruce'], build_dir='obj/test/Bruce', duplicate=0) |
127 |
SConscript(dirs=['test/BruceFactory'], build_dir='obj/test/BruceFactory', duplicate=0) |