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