/[escript]/trunk/escript/SConstruct
ViewVC logotype

Contents of /trunk/escript/SConstruct

Parent Directory Parent Directory | Revision Log Revision Log


Revision 217 - (show annotations)
Thu Nov 24 06:48:50 2005 UTC (17 years, 4 months ago) by jgs
File size: 1675 byte(s)
import sys
1 # Scons configuration file for escript
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 dodebug = 0
18 usegcc = 0
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('libinstall',0):
30 libinstall = ARGUMENTS.get('libinstall',0)
31 Export(["libinstall"])
32
33 if ARGUMENTS.get('debug',0):
34 dodebug = 1
35
36 if ARGUMENTS.get('usegcc',0):
37 usegcc = 1
38
39 #
40 # determine platform
41
42 env = Environment(ENV = os.environ)
43 platform = env['PLATFORM']
44
45 #
46 # determine hostname
47
48 hostname = os.environ['HOSTNAME']
49
50 #
51 # export esysroot
52
53 Export(["esysroot"])
54
55 #
56 # set and export library directory
57
58 libdir = Dir(str(esysroot) + '/escript/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 if dodebug==0 and hostname=='ess':
68 from ess_options import *
69
70 Export(["python_path"])
71 Export(["boost_path"])
72 Export(["cxx_flags"])
73
74 #
75 # print out build configuration for this module
76
77 print "############################################"
78 print "Build configuration for module: escript"
79 print " dodebug: ", dodebug
80 print " usegcc: ", usegcc
81 print " platform: ", platform
82 print " hostname: ", hostname
83 print " libinstall: ", libinstall
84 print "############################################"
85
86 #
87 # call the SConscript to do the actual build
88
89 SConscript('src/Data/SConscript', src_dir='src/Data', build_dir='obj', duplicate=0)

  ViewVC Help
Powered by ViewVC 1.1.26