--- ray/SConstruct 2003/10/27 10:35:41 1.2 +++ ray/SConstruct 2018/01/09 00:08:57 1.21 @@ -1,38 +1,48 @@ +from __future__ import division, print_function, unicode_literals import os import sys -import string -OPTFILE = 'rayopts.py' +def set_pre_opts(testenv): + optfile = File(testenv['CFG_OPTFILE']).abspath + vars = Variables(optfile, ARGUMENTS) + vars.Add('SKIP', 'Skip Display of License terms', 0) + vars.Add('RAD_DEBUG', 'Build a debug version', 0) + if testenv['CFG_PLATSYS'] == 'Windows': + # no default, will select the most recent one when empty + vars.Add('MSVC_VERSION', 'Microsoft VC Version', ) + else: # not yet supported on Windows + vars.Add('PMAP_OOC', 'Build Pmap with Out-of-core Data', 1) + vars.Update(testenv) + return vars -def set_opts(env): - # XXX add some caching - opts = Options(OPTFILE, ARGUMENTS) - opts.Add('SKIP', 'Skip Display of License terms', 0) - opts.Add('RAD_BINDIR', 'Install executables here', env['RAD_BINDIR']) - opts.Add('RAD_RLIBDIR', 'Install support files here', env['RAD_RLIBDIR']) - opts.Add('RAD_MANDIR', 'Install man pages here', env['RAD_MANDIR']) - opts.Add('RAD_DEBUG', 'Build a debug version', 0) - opts.Update(env) - opts.Save(OPTFILE, env) - Help(opts.GenerateHelpText(env, sort=cmp)) +def set_opts(env, pathfile): + vars = Variables(pathfile, ARGUMENTS) + vars.Add('RAD_BASEDIR', 'Installation base directory', env['RAD_BASEDIR']) + vars.Add('RAD_BINDIR', 'Install executables here', env['RAD_BINDIR']) + vars.Add('RAD_RLIBDIR', 'Install support files here', env['RAD_RLIBDIR']) + vars.Add('RAD_MANDIR', 'Install man pages here', env['RAD_MANDIR']) + vars.Update(env) + vars.Save(pathfile, env) + Help(vars.GenerateHelpText(env)) # where stuff is located in the source tree - env['RAD_BUILDLIB'] = '#src/lib' - env['RAD_BUILDBIN'] = '#bin' - env['RAD_BUILDRLIB'] = '#lib' - env['RAD_BUILDMAN'] = '#doc/man' + # the binary target libs are configured by platform + env['RAD_BUILDRLIB'] = '#lib' + env['RAD_BUILDMAN'] = '#doc/man' def allplats_setup(env): - from build_utils import find_libs - find_libs.find_x11(env) - find_libs.find_gl(env) # OpenGL - #find_libs.find_pixar(env) # PIXAR_LIB for src/px/ra_pixar.c + from build_utils import find_libs + find_libs.find_radlib(env) + find_libs.find_x11(env) + find_libs.find_gl(env) # OpenGL + find_libs.find_libtiff(env) + find_libs.find_pyinstaller(env) def post_common_setup(env): - env.Append(CPPPATH = [os.path.join('#src', 'common')]) - env.Append(LIBPATH=['../lib']) # our own libs - if not env.has_key('RAD_MLIB'): - env['RAD_MLIB'] = [] #['m'] # no seperate mlib on Win + env.Append(CPPPATH = [os.path.join('#src', 'common')]) + env.Append(LIBPATH=[env['RAD_BUILDLIB']]) # our own libs + if not env.has_key('RAD_MLIB'): + env['RAD_MLIB'] = [] #['m'] # no seperate mlib on Win def shareinstall_setup(env): from build_utils import install @@ -42,54 +52,92 @@ def shareinstall_setup(env): if 'install' in sys.argv or 'maninstall' in sys.argv: install.install_manfiles(env) +# first figure out the platform +from build_utils import load_plat +testenv = Environment() +load_plat.identify_plat(testenv) + +# set stuff before loading platforms +prevars = set_pre_opts(testenv) + # Set up build environment -env = Environment() +env = Environment(variables=prevars) +env.Decider('timestamp-match') +if env.get('PMAP_OOC', 0) in (0,'0','','n','no','false',False,None): + print('Building Photon-Maps with In-core KD-Tree') +else: + print('Building Photon-Maps with Out-of-core Octree') + +from build_utils import install +script_b = Builder(action = install.install_script, suffix = '') +env.Append(BUILDERS={'InstallScript': script_b}) +if os.name == 'posix': + tclscript_b = Builder(action = install.install_tclscript, suffix = '') + env.Append(BUILDERS={'InstallTCLScript': tclscript_b}) + # configure platform-specific stuff -from build_utils import load_plat -load_plat.load_plat(env, ARGUMENTS, platform=None) +load_plat.load_plat(env, testenv) # override options -set_opts(env) +cfg_pathfile = File(testenv['CFG_PATHFILE']).abspath +set_opts(env, cfg_pathfile) +load_plat.combine_instpaths(env) + # accept license -if not env['SKIP'] and not '-c' in sys.argv: - from build_utils import copyright - copyright.show_license() +if ((not env['SKIP'] + or env['SKIP'].strip().lower() in (0,'0','n','no','false',None)) + and not '-c' in sys.argv and not 'test' in sys.argv): + from build_utils import copyright + copyright.show_license() + testenv['SKIP'] = '1' +# We waited to save this, so that we can add the SKIP +prevars.Save(File(testenv['CFG_OPTFILE']).abspath, testenv) + # fill in generic config allplats_setup(env) +print('Installation directories:') +print('Base: ', env.subst('$RAD_BASEDIR')) +print('Binaries: ', env.subst('$RAD_BINDIR')) +print('Library: ', env.subst('$RAD_RLIBDIR')) +print('Manpages: ', env.subst('$RAD_MANDIR')) +print() + # Bring in all the actual things to build Export('env') -SConscript(os.path.join('src', 'common', 'SConscript')) -post_common_setup(env) -for d in Split('meta cv gen ot rt px hd util cal'): - SConscript(os.path.join('src', d, 'SConscript')) +if 'test' in sys.argv: + SConscript(os.path.join('test', 'SConscript')) + +else: + SConscript(os.path.join('src', 'common', 'SConscript'), + variant_dir=os.path.join(env['RAD_BUILDOBJ'],'common'), duplicate=0) + post_common_setup(env) + dirs = Split('''meta cv gen ot rt px hd util cal''') + if os.path.isfile('src/winimage/SConscript'): + dirs.append('winimage') + if os.path.isfile('src/winrview/SConscript'): + dirs.append('winrview') + for d in dirs: + print(d) + SConscript(os.path.join('src', d, 'SConscript'), + variant_dir=os.path.join(env['RAD_BUILDOBJ'], d), duplicate=0) -if string.find(string.join(sys.argv[1:]), 'install') > -1: - shareinstall_setup(env) + if ' '.join(sys.argv[1:]).find('install') > -1: + shareinstall_setup(env) +Default('.') + # virtual targets -# RAD_XXXINSTALL are filled in by the local scripts -env.Alias('bininstall', env.get('RAD_BININSTALL', [])) -env.Alias('rlibinstall', env.get('RAD_RLIBINSTALL',[])) -env.Alias('maninstall', env.get('RAD_MANINSTALL', [])) +env.Alias('bininstall', '$RAD_BINDIR') +env.Alias('rlibinstall', '$RAD_RLIBDIR') +env.Alias('maninstall', '$RAD_MANDIR') -env.Alias('build', ['#bin']) -env.Alias('test', ['#src/test']) +env.Alias('build', ['$RAD_BUILDBIN']) #, '$RAD_BUILDRLIB']) +env.Alias('test', ['#test']) env.Alias('install', ['bininstall', 'rlibinstall', 'maninstall']) -# Further virtual targets are defined locally: - -# meta_special -> mt1601 okimate imagew mt160 mx80 impress aed5 -# tcurve tscat tbar mtext libt4014.a plotout t4014 -# meta_special_install - -# px_special -> ra_im, t4027, paintjet, mt160t, greyscale, colorscale, d48c -# px_special_install - -# util_special -> scanner, makedist (not for Windows yet) -# util_special_install - - +# vi: set ts=4 sw=4 : +# vim: set syntax=python :