1 |
# Scons configuration file for esysUtils unit tests |
# Scons configuration file for esysUtils unit tests |
2 |
|
esysroot=str(Dir('./../../../..').abspath) |
3 |
import os |
execfile(str(File(esysroot+"/scons/esys_options.py"))) |
|
import sys |
|
|
|
|
|
# ensure correct versions of python and scons |
|
|
|
|
|
EnsurePythonVersion(2,3) |
|
|
EnsureSConsVersion(0,96) |
|
|
|
|
|
# |
|
|
# set appropriate defaults for configuration variables |
|
|
|
|
|
esysroot = Dir('#../../..') |
|
|
usegcc = 0 |
|
|
options = None |
|
|
sys_libs = [] |
|
|
|
|
|
# |
|
|
# import configuration variables passed in from |
|
|
# calling SConscript (if any) |
|
|
|
|
|
Import('*') |
|
|
|
|
|
# |
|
|
# retreive command-line arguments if any |
|
|
|
|
|
if ARGUMENTS.get('usegcc',0): |
|
|
usegcc = 1 |
|
|
|
|
|
if ARGUMENTS.get('options',0): |
|
|
options = ARGUMENTS.get('options',0) |
|
|
|
|
|
# |
|
|
# determine platform |
|
|
|
|
|
env = Environment(ENV = os.environ) |
|
|
platform = env['PLATFORM'] |
|
|
|
|
|
# |
|
|
# determine hostname |
|
|
|
|
|
import socket |
|
|
hostname = socket.gethostname() |
|
|
|
|
|
# |
|
|
# load configuration settings |
|
|
|
|
|
options_dir = str(esysroot) + '/scons' |
|
|
sys.path.append(options_dir) |
|
|
|
|
|
from default_options import * |
|
|
|
|
|
if hostname=='ess': |
|
|
from ess_options import * |
|
|
|
|
|
if usegcc==1: |
|
|
from gcc_options import * |
|
|
|
|
|
if options!=None: |
|
|
exec "from " + options + " import *" |
|
4 |
|
|
5 |
cxx_flags=cxx_flags_debug |
cxx_flags=cxx_flags_debug |
6 |
|
cc_flags=cc_flags_debug |
7 |
|
|
8 |
# |
# |
9 |
# print out build configuration for this module |
# print out build configuration for this module |
10 |
|
|
11 |
print "Build configuration for module: EsysException unit tests" |
print "Build configuration for module: EsysException unit tests" |
|
print " dodebug: 1" |
|
|
print " usegcc: ", usegcc |
|
12 |
print " cxx: ", cxx |
print " cxx: ", cxx |
13 |
print " platform: ", platform |
print " cxx_flags: ", cxx_flags |
|
print " hostname: ", hostname |
|
14 |
|
|
15 |
# |
# |
16 |
# do the actual build |
# do the actual build |
43 |
|
|
44 |
target = 'EsysExceptionTest.exe' |
target = 'EsysExceptionTest.exe' |
45 |
|
|
46 |
|
import os |
47 |
esysexception_env = Environment(ENV = os.environ) |
esysexception_env = Environment(ENV = os.environ) |
48 |
|
|
49 |
esysexception_env.Replace(CXX = cxx) |
esysexception_env.Replace(CXX = cxx) |