Parent Directory
|
Revision Log
setup scons configuration to make and install python code
1 | # Extensions to Scons |
2 | |
3 | import py_compile |
4 | import sys |
5 | |
6 | # Code to build .pyc from .py |
7 | def build_py(target, source, env): |
8 | py_compile.compile(str(source[0]), str(target[0])) |
9 | return None |
ViewVC Help | |
Powered by ViewVC 1.1.26 |