Parent Directory
|
Revision Log
Created 'scons install' command that also works for Tcl/Tk interface. These changes required some modifications to the default values of the environment variables. Installed Tcl/Tk version now works with only the LD_LIBRARY_PATH env var being required.
1 | Import('env') |
2 | |
3 | import glob |
4 | |
5 | a4c = glob.glob("*.a4c") |
6 | a4s = glob.glob("*.a4s") |
7 | a4l = glob.glob("*.a4l") |
8 | |
9 | env.Install(env['INSTALL_ROOT']+env['INSTALL_DATA']+"/ascend/models",a4c+a4l) |
10 | |
11 | subdirs = ['johnpye'] |
12 | |
13 | for subdir in subdirs: |
14 | files = glob.glob("johnpye/*.a4c") |
15 | |
16 | env.Install(env['INSTALL_ROOT']+env['INSTALL_DATA']+"/ascend/models/"+subdir,files) |
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |