ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/gen/SConscript
(Generate patch)

Comparing ray/src/gen/SConscript (file contents):
Revision 1.18 by schorsch, Thu Mar 10 21:43:22 2016 UTC vs.
Revision 1.19 by schorsch, Mon Jan 8 13:38:37 2018 UTC

# Line 1 | Line 1
1 + from __future__ import division, print_function, unicode_literals
2 +
3   import os
4  
5   Import('env') # inherit from parent
# Line 46 | Line 48 | prog = env.Program(target=os.path.join('$RAD_BUILDBIN'
48   progs.append(prog)
49  
50   if os.name == 'posix':
51 <        Default(env.InstallScript(os.path.join('$RAD_BUILDBIN', 'glaze'), 'glaze.csh'))
51 >        Default(env.InstallScript(os.path.join('$RAD_BUILDBIN', 'glaze.csh'),
52 >                                'glaze.csh'))
53 >        Default(env.InstallScript(os.path.join('$RAD_BUILDBIN', 'glaze'),
54 >                                'glaze.py'))
55 > else:
56 >        Default(env.InstallScript(os.path.join('$RAD_BUILDBIN', 'glaze.py'),
57 >                                'glaze.py'))
58  
59   Default('#src/gen')
60   env.Install('$RAD_BINDIR', progs)
# Line 57 | Line 65 | LIBFILES = Split('''illum.cal rev.cal skybright.cal gl
65   env.Append(RAD_RLIBINSTALL=env.Install('$RAD_RLIBDIR', LIBFILES))
66  
67   # vim: set syntax=python:
68 + # vi: set ts=4 sw=4 :

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines