Ignore:
Timestamp:
01/11/17 14:56:54 (8 years ago)
Author:
tsantos
Message:

NEW: adding AMR functionality, not working yet but structure in place

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/m4/issm_options.m4

    r21319 r21484  
    18961896        AC_MSG_RESULT($HAVE_KRIGING)
    18971897        dnl }}}
     1898        dnl with-amr{{{
     1899        AC_ARG_WITH([amr],
     1900                AS_HELP_STRING([--with-amr = YES],[compile with Adaptive Mesh Refinment capability (default is no)]),
     1901                [AMR=$withval],[AMR=no])
     1902        AC_MSG_CHECKING(for AMR capability compilation)
     1903
     1904        HAVE_AMR=no
     1905        if test "x$AMR" = "xyes"; then
     1906                HAVE_AMR=yes
     1907                AC_DEFINE([_HAVE_AMR_],[1],[with amr capability])
     1908        fi
     1909        AM_CONDITIONAL([AMR], [test x$HAVE_AMR = xyes])
     1910        AC_MSG_RESULT($HAVE_AMR)
     1911        dnl }}}
    18981912        AX_ANALYSES_SELECTION
    18991913
Note: See TracChangeset for help on using the changeset viewer.