63 |
options_dir = str(esysroot) + '/scons' |
options_dir = str(esysroot) + '/scons' |
64 |
sys.path.append(options_dir) |
sys.path.append(options_dir) |
65 |
|
|
66 |
|
from default_options import * |
67 |
|
|
68 |
if hostname=='ess': |
if hostname=='ess': |
69 |
from ess_options import * |
from ess_options import * |
70 |
|
|
86 |
# |
# |
87 |
# print out build configuration for this module |
# print out build configuration for this module |
88 |
|
|
|
print "############################################" |
|
89 |
print "Build configuration for module: esysUtils" |
print "Build configuration for module: esysUtils" |
90 |
print " dodebug: ", dodebug |
print " dodebug: ", dodebug |
91 |
print " usegcc: ", usegcc |
print " usegcc: ", usegcc |
92 |
print " cxx: ", cxx |
print " cxx: ", cxx |
93 |
print " platform: ", platform |
print " platform: ", platform |
94 |
print " hostname: ", hostname |
print " hostname: ", hostname |
|
print "############################################" |
|
95 |
|
|
96 |
# |
# |
97 |
# call the SConscript to do the actual build |
# call the SConscript to do the actual build |
98 |
|
|
99 |
SConscript('src/SConscript', src_dir='src', build_dir='obj', duplicate=0) |
SConscript(dirs=['src'], build_dir='obj/src', duplicate=0) |
100 |
|
SConscript(dirs=['test/EsysException'], build_dir='obj/test/EsysException', duplicate=0) |