ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/ot/SConscript
Revision: 1.8
Committed: Thu Mar 10 21:43:23 2016 UTC (8 years, 2 months ago) by schorsch
Branch: MAIN
Changes since 1.7: +1 -2 lines
Log Message:
reduce the number of libraries created

File Contents

# Content
1 import os
2
3 Import('env') # inherit from parent
4
5 # math libs
6 mlib = env['RAD_MLIB']
7
8 # standard targets
9 bbox = env.Object(source='bbox.c')
10 o_face = env.Object(source='o_face.c')
11 PROGS = (
12 ('oconv', Split('''oconv.c writeoct.c initotypes.c sphere.c
13 o_cone.c o_instance.c''') +[bbox, o_face], []),
14 ('getbbox', Split('getbbox.c readobj2.c init2otypes.c') +[bbox], []),
15 ('obj2mesh', Split('obj2mesh.c cvmesh.c wfconv.c writemesh.c')+[o_face],
16 ['rtdummy']),
17 )
18 for p in PROGS:
19 prog = env.Program(target=os.path.join(env['RAD_BUILDBIN'], p[0]),
20 source=p[1], LIBS=['rtrad']+p[2]+mlib)
21 Default(prog)
22 env.Append(RAD_BININSTALL=[env.Install(env['RAD_BINDIR'], prog)])
23
24
25 # vim: set syntax=python: