source: trunk/python/SConscript @ 1135

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

more work on a modular scons set up

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