--- trunk/scons/TEMPLATE_linux.py 2010/11/15 05:09:56 3349 +++ trunk/scons/TEMPLATE_linux.py 2011/09/15 06:03:17 3597 @@ -29,7 +29,7 @@ # The options file version. SCons will refuse to build if there have been # changes to the set of variables and your file has not been updated. # This setting is mandatory. -escript_opts_version = 200 +escript_opts_version = 201 # Installation prefix. Files will be installed in subdirectories underneath. # DEFAULT: '.' (current directory) @@ -113,6 +113,12 @@ # boost-python library/libraries to link against #boost_libs = ['boost_python-mt'] +# Prefix or paths to CppUnit headers and libraries. See note above. +#cppunit_prefix = '/usr/local' + +# CppUnit library/libraries to link against +#cppunit_libs = ['cppunit'] + # Whether to use the netCDF library for dump file support # DEFAULT: False #netcdf = True @@ -167,6 +173,16 @@ # UMFPACK library/libraries to link against #umfpack_libs = ['umfpack'] +# Whether to use BoomerAMG (requires MPI) +# DEFAULT: False +#boomeramg = True + +# Prefix or paths to BoomerAMG headers and libraries. See note above. +#boomeramg_prefix = '/usr/local' + +# BoomerAMG library/libraries to link against +#boomeramg_libs = ['HYPRE'] + # Flavour of LAPACK implementation # Recognized values: 'none', 'clapack', 'mkl' # DEFAULT: 'none' (do not use LAPACK) @@ -207,6 +223,10 @@ ### ADVANCED OPTIONS ### # Do not change the following options unless you know what they do +# Use intel's VSL library for random data +# DEFAULT: False +#vsl_random = True + # Extra libraries to link with #sys_libs = []