#--------------------#
# ISSM Configuration #
#--------------------#

ISSM_CONFIG='\
    --prefix=${ISSM_DIR} \
    --disable-shared \
    --enable-development \
    --enable-debugging \
    --with-javascript \
    --without-fortran \
    --without-GiaIvins \
    --without-Love \
    --without-kml \
    --without-kriging \
    --with-gsl-dir="${ISSM_DIR}/externalpackages/gsl/install-javascript" \
    --with-triangle-dir="${ISSM_DIR}/externalpackages/triangle/install-javascript" \
'

#-------------------#
# External Packages #
#-------------------#

EXTERNALPACKAGES="
    autotools   install-debian-linux.sh
    cmake       install.sh
    emscripten  install.sh
    gsl         install-javascript.sh
    triangle    install-javascript.sh
    shell2junit install.sh
"

#---------#
# Testing #
#---------#

# Test suites
MATLAB_TEST=0
PYTHON_TEST=0
JAVASCRIPT_TEST=1
EXAMPLES_TEST=0

# Number of CPUs used in ISSM compilation
#
# NOTE: One is usually safer as some packages are very sensitive to parallel
#       compilation.
#
NUMCPUS_INSTALL=8

# Number of CPUs used in the nightly runs
NUMCPUS_RUN=2

# Nightly run options
#
# See documentation in test/NightlyRun/runme.* for more information.
#
MATLAB_NROPTIONS=""
PYTHON_NROPTIONS=""
