ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/ot/SConscript
Revision: 1.10
Committed: Mon Jan 8 13:38:37 2018 UTC (6 years, 3 months ago) by schorsch
Branch: MAIN
CVS Tags: rad5R4, rad5R2, rad5R3, HEAD
Changes since 1.9: +3 -0 lines
Log Message:
Updating to SCons 3.x, adding support for Python 3

File Contents

# User Rev Content
1 schorsch 1.10 from __future__ import division, print_function, unicode_literals
2    
3 schorsch 1.1 import os
4    
5     Import('env') # inherit from parent
6    
7     # math libs
8     mlib = env['RAD_MLIB']
9 schorsch 1.9 addobj = env.get('ADDOBJNOTIFY')
10 schorsch 1.1
11     # standard targets
12 schorsch 1.7 bbox = env.Object(source='bbox.c')
13     o_face = env.Object(source='o_face.c')
14 schorsch 1.1 PROGS = (
15 schorsch 1.7 ('oconv', Split('''oconv.c writeoct.c initotypes.c sphere.c
16     o_cone.c o_instance.c''') +[bbox, o_face], []),
17     ('getbbox', Split('getbbox.c readobj2.c init2otypes.c') +[bbox], []),
18 schorsch 1.9 ('obj2mesh', Split('obj2mesh.c cvmesh.c wfconv.c writemesh.c')+[o_face,addobj],
19     []),
20 schorsch 1.1 )
21     for p in PROGS:
22     prog = env.Program(target=os.path.join(env['RAD_BUILDBIN'], p[0]),
23 schorsch 1.8 source=p[1], LIBS=['rtrad']+p[2]+mlib)
24 schorsch 1.1 Default(prog)
25     env.Append(RAD_BININSTALL=[env.Install(env['RAD_BINDIR'], prog)])
26    
27    
28 schorsch 1.6 # vim: set syntax=python:
29 schorsch 1.10 # vi: set ts=4 sw=4 :