ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/SConstruct
Revision: 1.11
Committed: Wed Jun 2 15:58:30 2010 UTC (13 years, 9 months ago) by greg
Branch: MAIN
CVS Tags: rad4R2P2, rad5R0, rad4R2, rad4R1, rad4R2P1
Changes since 1.10: +0 -2 lines
Log Message:
Fixes to MINGW build

File Contents

# User Rev Content
1 schorsch 1.1
2     import os
3     import sys
4     import string
5    
6     OPTFILE = 'rayopts.py'
7     def set_opts(env):
8 schorsch 1.8 # XXX add some caching
9     opts = Options(OPTFILE, ARGUMENTS)
10     opts.Add('SKIP', 'Skip Display of License terms', 0)
11     opts.Add('RAD_BINDIR', 'Install executables here', env['RAD_BINDIR'])
12     opts.Add('RAD_RLIBDIR', 'Install support files here', env['RAD_RLIBDIR'])
13     opts.Add('RAD_MANDIR', 'Install man pages here', env['RAD_MANDIR'])
14     opts.Add('RAD_DEBUG', 'Build a debug version', 0)
15     opts.Update(env)
16     opts.Save(OPTFILE, env)
17     Help(opts.GenerateHelpText(env, sort=cmp))
18 schorsch 1.1 # where stuff is located in the source tree
19 schorsch 1.8 env['RAD_BUILDLIB'] = '#src/lib'
20     env['RAD_BUILDBIN'] = '#bin'
21     env['RAD_BUILDRLIB'] = '#lib'
22     env['RAD_BUILDMAN'] = '#doc/man'
23 schorsch 1.1
24     def allplats_setup(env):
25 schorsch 1.8 from build_utils import find_libs
26 schorsch 1.9 find_libs.find_radlib(env)
27 schorsch 1.8 find_libs.find_x11(env)
28     find_libs.find_gl(env) # OpenGL
29     find_libs.find_libtiff(env)
30 schorsch 1.1
31     def post_common_setup(env):
32 schorsch 1.8 env.Append(CPPPATH = [os.path.join('#src', 'common')])
33     env.Append(LIBPATH=['../lib']) # our own libs
34     if not env.has_key('RAD_MLIB'):
35     env['RAD_MLIB'] = [] #['m'] # no seperate mlib on Win
36 schorsch 1.1
37     def shareinstall_setup(env):
38     from build_utils import install
39     # only scan for those files when we actually need them
40     if 'install' in sys.argv or 'rlibinstall' in sys.argv:
41     install.install_rlibfiles(env)
42     if 'install' in sys.argv or 'maninstall' in sys.argv:
43     install.install_manfiles(env)
44    
45     # Set up build environment
46 greg 1.10 env = Environment(tools=['mingw'])
47 schorsch 1.7 env.Decider('timestamp-match')
48 schorsch 1.1
49 schorsch 1.4 if os.name == 'posix':
50     from build_utils import install
51     csh_b = Builder(action = install.install_cshscript,
52     suffix = '', src_suffix = '.csh')
53     env.Append(BUILDERS={'InstallCsh': csh_b})
54    
55 schorsch 1.1 # configure platform-specific stuff
56     from build_utils import load_plat
57 schorsch 1.2 load_plat.load_plat(env, ARGUMENTS, platform=None)
58 schorsch 1.1
59     # override options
60     set_opts(env)
61    
62     # accept license
63 schorsch 1.8 if ((not env['SKIP']
64     or env['SKIP'].strip().lower() in (0,'0','no','false'))
65     and not '-c' in sys.argv and not 'test' in sys.argv):
66     from build_utils import copyright
67     copyright.show_license()
68 schorsch 1.1
69     # fill in generic config
70     allplats_setup(env)
71    
72 schorsch 1.4
73 schorsch 1.1 # Bring in all the actual things to build
74     Export('env')
75 schorsch 1.8 if 'test' in sys.argv:
76     SConscript(os.path.join('test', 'SConscript'))
77    
78     else:
79     SConscript(os.path.join('src', 'common', 'SConscript'))
80     post_common_setup(env)
81     for d in Split('meta cv gen ot rt px hd util cal'):
82     print d
83     SConscript(os.path.join('src', d, 'SConscript'))
84 schorsch 1.1
85 schorsch 1.8 if string.find(string.join(sys.argv[1:]), 'install') > -1:
86     shareinstall_setup(env)
87 schorsch 1.1
88 schorsch 1.6 Default('.')
89    
90 schorsch 1.1 # virtual targets
91 schorsch 1.4 env.Alias('bininstall', '$RAD_BINDIR')
92     env.Alias('rlibinstall', '$RAD_RLIBDIR')
93     env.Alias('maninstall', '$RAD_MANDIR')
94 schorsch 1.1
95     env.Alias('build', ['#bin'])
96 schorsch 1.8 env.Alias('test', ['#test'])
97 schorsch 1.1 env.Alias('install', ['bininstall', 'rlibinstall', 'maninstall'])
98