/[escript]/trunk/modellib/py_src/SConscript
ViewVC logotype

Contents of /trunk/modellib/py_src/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 352 - (show annotations)
Wed Dec 14 02:21:37 2005 UTC (17 years, 3 months ago) by jgs
File size: 869 byte(s)
turns out Install() targets should also be made Default()
targets if you want them to actually reliably work!

1 pyinstall = None
2
3 Import('*')
4
5 import os
6 import sys
7
8 extensions_dir = str(esysroot) + '/scons'
9 sys.path.append(extensions_dir)
10
11 import scons_extensions
12
13 modellibpy_env = Environment(ENV = os.environ)
14
15 py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True)
16 modellibpy_env.Append(BUILDERS = {'PyCompile' : py_builder});
17
18 python_src = ['__init__.py',
19 'darcy.py',
20 'flow.py',
21 'geometry.py',
22 'input.py',
23 'materials.py',
24 'probe.py',
25 'temperature.py',
26 'tsunami.py',
27 'visualization.py']
28
29 pyc = modellibpy_env.PyCompile(python_src)
30
31 Default(modellibpy_env.Install(pydir, pyc))
32 Default(modellibpy_env.Install(pydir2, pyc))
33 if pyinstall != None:
34 Default(modellibpy_env.Install(pyinstall, pyc))

  ViewVC Help
Powered by ViewVC 1.1.26