/[escript]/branches/intelc_win32/bruce/src/SConscript
ViewVC logotype

Contents of /branches/intelc_win32/bruce/src/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 742 - (show annotations)
Sat Jun 24 11:27:16 2006 UTC (16 years, 8 months ago) by woo409
File size: 2414 byte(s)
+ Initial commit of win32 port using intel c++ compiler 9.1.x for Windows
+ This version is failing some file handling tests in python
1 # Copyright 2006 by ACcESS MNRF
2 #
3 # http://www.access.edu.au
4 # Primary Business: Queensland, Australia
5 # Licensed under the Open Software License version 3.0
6 # http://www.opensource.org/licenses/osl-3.0.php
7 #
8 #
9 #
10 import os
11 Import('*')
12
13 local_env=env.Copy()
14 py_wrapper_local_env=env.Copy()
15 # Remove the sharedlibrary prefix on all platform - we don't want 'lib' mucking with our python modules
16 del py_wrapper_local_env['SHLIBPREFIX']
17
18 lib_name = 'bruce'
19 py_wrapper_name = lib_name+'cpp'
20 py_wrapper_source = py_wrapper_name+'.cpp'
21 py_wrapper_lib_name = py_wrapper_name
22
23 # get the relevant file names:
24 src_dir = local_env.Dir('.').srcnode().abspath
25 filenames = [ x for x in os.listdir(src_dir) if os.path.splitext(x)[1] in [".h", ".c", ".cpp"] ]
26
27 sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']]
28 headers = [x for x in filenames if os.path.splitext(x)[1] in ['.h']]
29 # Filter out sources that should not be in the list automatically
30 sources.remove(py_wrapper_source) # FIXME: should probably refactor the source tree so the python wrapper isn't colocated with c++ sources
31
32 local_env.Append(LIBS = [boost_lib, 'escript', 'esysUtils'])
33 py_wrapper_local_env.Append(LIBS = [boost_lib, lib_name, 'escript', 'esysUtils'])
34
35 local_env.Append(CPPDEFINES = 'BRUCE_EXPORTS')
36
37 lib = local_env.SharedLibrary(lib_name, sources)
38 py_wrapper_lib = py_wrapper_local_env.SharedLibrary( py_wrapper_lib_name, py_wrapper_source)
39
40 include_path = Dir(lib_name, incinstall)
41
42 local_env.Install(include_path, headers )
43 local_env.Install(libinstall, lib)
44 py_wrapper_local_env.Install(pyinstall+'/bruce', py_wrapper_lib)
45
46 # export the lib target since tests will depend on it
47 # the lib target is a list of file nodes (why? win32 produces more than one output file: .lib, .dll, .pdb)
48 # FIXME: This list handling produces the desired result but can this be done directly with scons File nodes?
49 dep_lib = [libinstall+'/'+str(x) for x in lib]
50 Export('dep_lib')
51
52 # add source files to release
53 release_srcfiles = [ env.File(x) for x in filenames ] + [env.File("SConscript"), ]
54 env.Zip(src_zipfile, release_srcfiles)
55 env.Tar(src_tarfile, release_srcfiles)
56
57
58 # Call the python sconscript
59 env.SConscript(dirs = ['#/bruce/py_src'], build_dir='py', duplicate=0)
60
61 # Call the unit tests SConscript
62 local_env.SConscript(dirs = ['#/bruce/test'], build_dir='#/build/$PLATFORM/bruce/test', duplicate=0)

  ViewVC Help
Powered by ViewVC 1.1.26