1 |
# Scons configuration file for CppUnitTest |
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 |
dodebug = 0 |
17 |
usegcc = 0 |
18 |
options = None |
19 |
|
20 |
# |
21 |
# import configuration variables passed in from |
22 |
# calling SConscript (if any) |
23 |
|
24 |
Import('*') |
25 |
|
26 |
# |
27 |
# retreive command-line arguments if any |
28 |
|
29 |
if ARGUMENTS.get('debug',0): |
30 |
dodebug = 1 |
31 |
|
32 |
if ARGUMENTS.get('usegcc',0): |
33 |
usegcc = 1 |
34 |
|
35 |
if ARGUMENTS.get('options',0): |
36 |
options = ARGUMENTS.get('options',0) |
37 |
|
38 |
# |
39 |
# determine platform |
40 |
|
41 |
env = Environment(ENV = os.environ) |
42 |
platform = env['PLATFORM'] |
43 |
|
44 |
# |
45 |
# determine hostname |
46 |
|
47 |
import socket |
48 |
hostname = socket.gethostname() |
49 |
|
50 |
# |
51 |
# export esysroot |
52 |
|
53 |
Export(["esysroot"]) |
54 |
|
55 |
# |
56 |
# set library directory |
57 |
|
58 |
libdir = Dir(str(esysroot) + '/tools/CppUnitTest/lib') |
59 |
Export(["libdir"]) |
60 |
|
61 |
# |
62 |
# load and export configuration settings |
63 |
|
64 |
options_dir = str(esysroot) + '/scons' |
65 |
sys.path.append(options_dir) |
66 |
|
67 |
from default_options import * |
68 |
|
69 |
if hostname=='ess': |
70 |
from ess_options import * |
71 |
|
72 |
if usegcc==1: |
73 |
from gcc_options import * |
74 |
|
75 |
if options!=None: |
76 |
exec "from " + options + " import *" |
77 |
|
78 |
if dodebug==1: |
79 |
cxx_flags=cxx_flags_debug |
80 |
|
81 |
Export(["cxx"]) |
82 |
Export(["cxx_flags"]) |
83 |
Export(["ar_flags"]) |
84 |
|
85 |
# |
86 |
# print out build configuration for this module |
87 |
|
88 |
print "Build configuration for module: CppUnitTest" |
89 |
print " dodebug: ", dodebug |
90 |
print " usegcc: ", usegcc |
91 |
print " cxx: ", cxx |
92 |
print " platform: ", platform |
93 |
print " hostname: ", hostname |
94 |
|
95 |
# |
96 |
# call the SConscript to do the actual build |
97 |
|
98 |
SConscript('src/SConscript', src_dir='src', build_dir='obj', duplicate=0) |