source: trunk/python/SConscript @ 1122

Last change on this file since 1122 was 1122, checked in by mar637, 18 years ago

install file for python code

File size: 192 bytes
Line 
1import glob
2
3# import root environment
4Import( "env", "SGlob" )
5myenv = env.Copy()
6
7# gather python files
8pys = SGlob("*.py")
9pymods = []
10for p in pys:
11    myenv.Install(myenv["dist_dir"],p)
12
Note: See TracBrowser for help on using the repository browser.