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.6 by schorsch, Mon Sep 12 14:44:09 2005 UTC vs.
Revision 1.9 by schorsch, Thu Apr 24 10:28:25 2008 UTC

# Line 24 | Line 24 | PROGS = (
24   ('genbranch',   ['genbranch.c',], []),
25   ('replmarks',   ['replmarks.c',],
26          ['rtproc','rtpath','rtmath','rtio','rterror']),
27 < ('mkillum',     Split('mkillum.c mkillum2.c mkillum3.c'),
28 <    ['rtproc','rtscene','rtpath','rtmath','rtio','rtcont','rterror']),
27 > #('mkillum',     Split('mkillum.c mkillum2.c mkillum3.c'),
28 > #    ['rtproc','rtscene','rtpath','rtmath','rtio','rtcont','rterror']),
29 > #('mksource',    ['mksource.c'],
30 > #       ['rtio','rtmath','rterror']),
31   ('xform',       ['xform.c',],
32      ['rtproc','rtscene','rtmath','rtargs','rtio','rtcont','rtpath','rterror']),
33   )
34   progs = []
35   for p in PROGS:
36 <    prog = env.Program(target=os.path.join(env['RAD_BUILDBIN'], p[0]),
36 >    prog = env.Program(target=os.path.join('$RAD_BUILDBIN', p[0]),
37              source=p[1], LIBS=p[2] + mlib)
38      progs.append(prog)
39 +
40 + ezxml = env.Object('ezxml.c',
41 +                CPPDEFINES=env.get('CPPDEFINES',[]) + env.get('EZXML_CPPDEFINES',[]))
42 +
43 + prog = env.Program(target=os.path.join('$RAD_BUILDBIN', 'mkillum'),
44 +                source=Split('mkillum.c mkillum2.c mkillum3.c mkillum4.c') + ezxml,
45 +                CPPPATH=env.get('CPPPATH', []) + ['#src/rt'],
46 +                LIBS=['raycalls','rttrace','rtscene','rtpic','rtfunc','rtproc',
47 +                'rtpath','rtmath','rtargs','rtio','rtcont','rtmem','rterror']
48 +                + mlib)
49 + prog = env.Program(target=os.path.join('$RAD_BUILDBIN', 'mksource'),
50 +                source=['mksource.c'],
51 +                CPPPATH=env.get('CPPPATH', []) + ['#src/rt'],
52 +                LIBS=['raycalls','rttrace','rtscene','rtpic','rtfunc',
53 +                'rtmath','rtcont','rtmem','rtargs','rtio','rtpath','rterror'] + mlib)
54 + progs.append(prog)
55  
56   if os.name == 'posix':
57          Default(env.InstallCsh(os.path.join('$RAD_BUILDBIN', 'glaze'), 'glaze.csh'))

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines