--- ray/src/common/SConscript 2016/03/18 22:54:22 1.20 +++ ray/src/common/SConscript 2018/01/08 13:38:37 1.23 @@ -1,3 +1,5 @@ +from __future__ import division, print_function, unicode_literals + import os Import('env') @@ -51,7 +53,7 @@ librtrad = env.StaticLibrary(target=radlib('rtrad'), MGF = Split('''mgf_parser.c mgf_object.c mgf_xf.c mgf_context.c''') libmgf = env.StaticLibrary(target=radlib('mgf'), source=MGF) -REETZ = Split('g3affine.c g3flist.c g3sphere.c g3vector.c gbasic.c maxheap.c') +REETZ = Split('g3affine.c g3flist.c g3sphere.c g3vector.c gbasic.c maxheap.c muc_randvar.c') libreetz = env.StaticLibrary(target=radlib('reetz'), source=REETZ) LIBFILES = Split('tmesh.cal') @@ -65,3 +67,5 @@ if env.has_key('OGL'): Default(librgl) # vim: set syntax=python: +# vi: set ts=4 sw=4 : +