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 |
finleypy_env = Environment(ENV = os.environ) |
14 |
|
15 |
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
16 |
finleypy_env.Append(BUILDERS = {'PyCompile' : py_builder}); |
17 |
|
18 |
python_src = ['__init__.py', |
19 |
'finley.py'] |
20 |
|
21 |
pyc = finleypy_env.PyCompile(python_src) |
22 |
|
23 |
Default(finleypy_env.Install(pydir, pyc)) |
24 |
Default(finleypy_env.Install(pydir2, pyc)) |
25 |
if pyinstall != None: |
26 |
Default(finleypy_env.Install(pyinstall, pyc)) |