ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/SConscript
Revision: 1.18
Committed: Wed Dec 15 01:40:11 2010 UTC (13 years, 3 months ago) by greg
Branch: MAIN
CVS Tags: rad4R2P2, rad5R0, rad4R2, rad4R1, rad4R2P1
Changes since 1.17: +1 -1 lines
Log Message:
Updated SConscript files for compiling under MINGW

File Contents

# Content
1 import os
2
3 Import('env') # inherit from parent
4
5 mlib = ['$RAD_MLIB']
6 progs = []
7
8 # compose paths
9 def radbin(name): return os.path.join('$RAD_BUILDBIN', name)
10 def radlib(name): return os.path.join('$RAD_BUILDLIB', name)
11
12 Version = env.Object(source='#src/rt/Version.c')
13
14 # standard targets
15 PROGS = [
16 ('findglare', Split('findglare.c glareval.c glaresrc.c setscan.c'),
17 ['rtpic','rtargs','rtio','rtproc','rtmath','rtpath','rtmem','rterror']),
18 ('glarendx', Split('glarendx.c'), ['rtpic','rtargs','rtio','rtmath']),
19 ('vwright', Split('vwright.c'), ['rtpic','rtargs','rtio','rtmath']),
20 ('vwrays', Split('vwrays.c'), ['rtpic','rtargs','rtio','rtmath']),
21 ('rad', Split('rad.c'),
22 ['rtpic','rtproc','rtpath','rtmath','rtargs','rtio','rtcont','rtmem','rterror']),
23 ('rpiece', Split('rpiece.c') + [Version],
24 ['rtpic','rtargs','rtio','rtproc','rtmath','rtpath','rtmem']),
25 ('ranimate', ['ranimate.c', '$RAD_NETCOMPAT'],
26 ['rtpic','rtargs','rtio','rtproc','rtcont','rtmem','rtpath','rtmath',
27 'rtnet','rterror','$RAD_SOCKETLIB']),
28 ('rtcontrib', ['rtcontrib.c', Version],
29 ['rtpic','rtargs','rtfunc','rtio','rtproc','rtcont','rtmem','rtpath',
30 'rtmath','rtnet','rterror','$RAD_SOCKETLIB']),
31 ('dctimestep', ['dctimestep.c'],
32 ['rtall'])
33 ]
34
35 for p in PROGS:
36 prog = env.Program(target=radbin(p[0]), source=p[1], LIBS=p[2]+mlib)
37 progs.append(prog)
38
39 #if os.name != 'nt': # XXX pending Windows version of raypcalls.c
40 if True: # experimental raypwin.c
41 # targets with different includes/libs
42 rs = Split('ranimove.c ranimove1.c ranimove2.c')
43 ranimove = env.Program(target=radbin('ranimove'), source=rs,
44 CPPPATH=env.get('CPPPATH', [])+ ['#src/rt'],
45 LIBS=['raycalls','rttrace','rtscene','rtpic','rtfunc','rtmath',
46 'rtcont','rtmem','rtargs','rtio','rtproc','rtpath','rterror']
47 + mlib)
48 progs.append(ranimove)
49 rsensor = env.Program(target=radbin('rsensor'), source='rsensor.c',
50 CPPPATH=env.get('CPPPATH', [])+ ['#src/rt'],
51 LIBS=['raycalls','rttrace','rtscene','rtpic','rtfunc','rtmath',
52 'rtcont','rtmem','rtargs','rtio','rtpath','rterror','rtproc',
53 'rtlamps'] + mlib)
54 progs.append(rsensor)
55
56 getinfo = env.Program(target=radbin('getinfo'), source='getinfo.c',
57 LIBS=['rtio'])
58 progs.append(getinfo)
59
60
61 # X11 targets
62 if env.has_key('X11LIB'):
63 xincl = env.get('CPPPATH', []) + ['$X11INCLUDE']
64 xlibp = env.get('LIBPATH', []) + ['$X11LIB']
65 xglaresrc = env.Program(target=radbin('xglaresrc'),
66 source=Split('xglaresrc.c') + [env.x11findwind], # XXX remote magic
67 LIBPATH=xlibp, CPPPATH=xincl,
68 LIBS=['rtpic','rtmath','rtargs','rtio','X11']+ mlib)
69 progs.append(xglaresrc)
70
71 # OpenGL targets that also depend on X11
72 if env.has_key('OGL'):
73 glrad = env.Program(target=radbin('glrad'), source=Split('glrad.c'),
74 CPPFLAGS=env.get('CPPFLAGS', []) + ['$RAD_STEREO'],
75 LIBPATH=xlibp, CPPPATH=xincl,
76 LIBS=['rgl','rtpic','rtscene','rtproc','rtpath','rtargs','rtio',
77 'rtmath','rtcont','rtmem','rterror','rtdummy',
78 'GL', 'GLU','X11'],)
79 progs.append(glrad)
80
81 if os.name == 'posix': # XXX ignoring trad.wsh
82 for s in Split('''objview objline objpict glare dayfact
83 debugcal rlux raddepend compamb vinfo genambpos fieldcomb'''):
84 Default(env.InstallCsh(radbin(s), s + '.csh'))
85 # Those don't really work yet
86 #else:
87 # for s in Split('''objview glare rlux '''):
88 # prog = env.Program(target=radbin(s), source=s+'.c')
89 # progs.append(prog)
90
91 Default('#src/util')
92 env.Install('$RAD_BINDIR', progs)
93