Changeset 13709


Ignore:
Timestamp:
10/16/12 21:28:33 (12 years ago)
Author:
Eric.Larour
Message:

CHG: new android directory in c/ for android objects.
new fac class with factorial routine to test JNI interfacing.

Location:
issm/trunk-jpl
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/configs/config-arm-linux.sh

    r13654 r13709  
    66    --host="arm-linux-androideabi" \
    77    --enable-shared \
     8    --with-android\
    89    --without-fortran \
    910        --without-wrappers \
  • TabularUnified issm/trunk-jpl/m4/issm_options.m4

    r13655 r13709  
    14021402        AC_MSG_RESULT($HAVE_RIFTS)
    14031403        dnl }}}
     1404        dnl with-android{{{
     1405        AC_ARG_WITH([android],
     1406                AS_HELP_STRING([--with-android = YES], [compile with android capabilities (default is no)]),
     1407                [ANDROID=$withval],[ANDROID=no])
     1408        AC_MSG_CHECKING(for android capability compilation)
     1409
     1410        if test "x$ANDROID" = "xyes"; then
     1411
     1412                dnl defaults
     1413                HAVE_ANDROID=yes
     1414
     1415                AC_DEFINE([_HAVE_ANDROID_],[1],[with android capability])
     1416        else
     1417                HAVE_ANDROID=no
     1418        fi
     1419        AM_CONDITIONAL([ANDROID], [test x$HAVE_ANDROID = xyes])
     1420        AC_MSG_RESULT($HAVE_ANDROID)
     1421        dnl }}}
    14041422        dnl with-3d{{{
    14051423        AC_ARG_WITH([3d],
  • TabularUnified issm/trunk-jpl/src/c/Makefile.am

    r13700 r13709  
    546546                                    ./modules/ConstraintsStatex/RiftConstraintsState.cpp
    547547#}}}
     548#Android sources  {{{
     549android_sources = ./android/fac.h\
     550                                  ./android/fac.cpp
     551#}}}
    548552#3D sources  {{{
    549553threed_sources = ./classes/gauss/GaussPenta.h\
     
    941945endif
    942946
     947if ANDROID
     948issm_sources +=  $(android_sources)
     949endif
     950
    943951if THREED
    944952issm_sources +=  $(threed_sources)
Note: See TracChangeset for help on using the changeset viewer.